You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is error in parsing numbers on line std::string n = s.substr(save_ptr, ptr);
which sometimes evaluates int as float (when somewhere later in string there is a "."..
I think there should be (ptr - save_ptr) as a second parameter to substr.
The text was updated successfully, but these errors were encountered:
I think there is error in parsing numbers on line std::string n = s.substr(save_ptr, ptr);
which sometimes evaluates int as float (when somewhere later in string there is a "."..
I think there should be (ptr - save_ptr) as a second parameter to substr.
The text was updated successfully, but these errors were encountered: