Forgot 2 exceptions

This commit is contained in:
Michael Cook (mackal)
2020-01-16 19:10:04 -05:00
parent 139b6c34e5
commit 4241fba7e2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -222,7 +222,7 @@ bool StringIsNumber(const std::string &s) {
auto r = stod(s);
return true;
}
catch (std::exception) {
catch (std::exception &) {
return false;
}
}