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:
@@ -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
|
||||
|
Reference in New Issue
Block a user