Update to v142 build tools for Visual Studio 2019 (#548)

* Update to build tools v142
* Update official build pipelines to use VS2019
* Update instructions to suggest updating to VS2019
This commit is contained in:
Matt Cooley
2019-06-24 16:38:45 -07:00
committed by GitHub
parent 02a3532442
commit 33b885ac17
12 changed files with 54 additions and 53 deletions

View File

@@ -50,8 +50,7 @@ double Utils::GetDoubleFromWstring(wstring input)
{
wchar_t unWantedChars[] = { L' ', L',', 8234, 8235, 8236, 8237 };
wstring ws = RemoveUnwantedCharsFromWstring(input, unWantedChars, 6);
string inputString(ws.begin(), ws.end());
return ::atof(inputString.c_str());
return stod(ws);
}
// Returns windowId for the current view