Merged PR 4963673: OS-side build fixes for 09471c375 (gsl-3.1.0 update)

Retrieved from https://microsoft.visualstudio.com os.2020 OS official/rs_onecore_dep_uxp 29b1a1d663d0047dc0d2125dd05f75959bca27ef

Related work items: MSFT:27866336
This commit is contained in:
Dustin Howett 2020-07-30 22:48:48 +00:00
parent 52d0e3cd52
commit 5c5c437ab8
4 changed files with 6 additions and 2 deletions

View file

@ -157,7 +157,7 @@ BgfxEngine::BgfxEngine(PVOID SharedViewBase, LONG DisplayHeight, LONG DisplayWid
for (size_t i = 0; i < clusters.size() && i < (size_t)_displayWidth; i++)
{
NewRun[coord.X + i].Character = clusters.at(i).GetTextAsSingle();
NewRun[coord.X + i].Character = til::at(clusters, i).GetTextAsSingle();
NewRun[coord.X + i].Attribute = _currentLegacyColorAttribute;
}

View file

@ -3,6 +3,8 @@
# - Common Project Configuration
# -------------------------------------
!include $(OSDEPENDSROOT)\OSS\gsl\3.1.0\consume.inc
# -------------------------------------
# Preprocessor Settings
# -------------------------------------

View file

@ -278,7 +278,7 @@ bool WddmConEngine::IsInitialized()
OldChar->Character = NewChar->Character;
OldChar->Attribute = NewChar->Attribute;
NewChar->Character = clusters.at(i).GetTextAsSingle();
NewChar->Character = til::at(clusters, i).GetTextAsSingle();
NewChar->Attribute = _currentLegacyColorAttribute;
}

View file

@ -3,6 +3,8 @@
# - Console Virtual Terminal Parser Fuzzer
# -------------------------------------
!include $(OSDEPENDSROOT)\OSS\gsl\3.1.0\consume.inc
# This program will generate fuzz input for the parsing engine
# and is to be used in conjunction with the fuzz wrapper tool.