Update to v142 build tools for Visual Studio 2019#548
Update to v142 build tools for Visual Studio 2019#548mcooley merged 8 commits intomicrosoft:masterfrom
Conversation
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
We're getting an access violation when resuming from the coroutine at App.xaml.cpp:174. It looks like this happens only in the Release configuration. This is crashing the app shortly after launch, which is why the UI tests are failing. |
HowardWolosky
left a comment
There was a problem hiding this comment.
Looks good. Thanks for doing the update (and going the extra mile to update the screenshot as well). Just one minor requested change. I separately have a local build going on right now to provide a smoke test.
| wstring ws = RemoveUnwantedCharsFromWstring(input, unWantedChars, 6); | ||
| string inputString(ws.begin(), ws.end()); | ||
| return ::atof(inputString.c_str()); | ||
| return stod(ws); |
There was a problem hiding this comment.
We should explicitly use the widechar version of functions. We're never going to not ship this in Unicode.
| return stod(ws); | |
| return wcstod(ws); |
There was a problem hiding this comment.
stod operates on std::wstring, while wcstod is a C function and it would need to be wcstod(ws.c_str()). I'd prefer to leave it as-is.
|
<-- super-happy dancing Ninja Cat goes here --> |
Fixes #463