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
Use std::stringstream instead of snprintf() for double->string conversion
snprintf() will use the current locale for converting a double to a string,
which will use a ',' instead of a '.' in some locales (e.g. de_DE).
std::stringstream allows setting the locale to "C" to always get a '.'.
0 commit comments