StringUtil: Require TryParse of float types to use the entire string.

This commit is contained in:
Jordan Woyak 2019-10-18 19:56:48 -05:00
parent 4a613dad20
commit 0d254d9cb8

View File

@ -61,7 +61,7 @@ static bool TryParse(const std::string& str, N* const output)
iss.imbue(std::locale("C"));
N tmp;
if (iss >> tmp)
if (iss >> tmp && iss.eof())
{
*output = tmp;
return true;