jsoncpp/src
Steffen Kieß b8aaa03367 Use std::stringstream instead of snprintf() for double->string conversion
`snprintf()` will use the current `LC_NUMERIC` 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 `.`.
This occurs only for that `stringstream` instance; no global is
altered.
2014-07-09 11:46:00 -07:00
..
jsontestrunner Ran clang-format over all .h and .cpp files. 2014-07-01 08:48:54 +10:00
lib_json Use std::stringstream instead of snprintf() for double->string conversion 2014-07-09 11:46:00 -07:00
test_lib_json Ran clang-format over all .h and .cpp files. 2014-07-01 08:48:54 +10:00
CMakeLists.txt - New CMake based build system. Based in part on contribution from 2013-05-08 20:21:11 +00:00