- 1afff03 fix stdexcept by christopherdunn ยท 12 years ago master
- 552b542 Fixed a test that causes a crash when exceptions are disabled. by aaronjacobs ยท 12 years ago
- 98cbf58 Added structured error reporting to Reader. by aaronjacobs ยท 12 years ago
- ea0765f Added features that allow the reader to accept common non-standard JSON. by aaronjacobs ยท 12 years ago
- 08e2541 vim modeline by christopherdunn ยท 12 years ago
- f67bde2 Comment reading/write improvements by christopherdunn ยท 12 years ago
- 919ff13 JSON_ASSERT -> JSON_ASSERT_MESSAGE by christopherdunn ยท 12 years ago
- c647e37 Added missing includes for std::istream. by aaronjacobs ยท 12 years ago
- 4c35b76 Fixed broken build on VS 2012 by blep ยท 12 years ago
- ddf395d Fixed some snprintf-related build breakages in Visual Studio. by aaronjacobs ยท 12 years ago
- 63b3699 Updated two calls to sprintf that I missed in r269. by aaronjacobs ยท 12 years ago
- 269cbe3 Replaced the complex implementation of valueToString(double). by aaronjacobs ยท 12 years ago
- 8845455 Added more floating point tests. by aaronjacobs ยท 12 years ago
- 195805d Added further floating point tests. by aaronjacobs ยท 12 years ago
- e2d57bb Switched away from sprintf, which is prone to buffer overflows. by aaronjacobs ยท 12 years ago
- c9eedfc - CMake: added option to turn fail compilation if warning occurs, and warning level 4 with MSVC. by blep ยท 13 years ago
- be6509c - disabled warning 4786 for VS6 caused by STL (identifier was truncated to '255' characters in the debug information) by blep ยท 13 years ago
- 1236c7e Added simple batch build script for CMake. by blep ยท 13 years ago
- 5ae67cf Added missing source file to CMakeLists.txt. by blep ยท 13 years ago
- 4a0294e by blep ยท 13 years ago
- 7b7cc07 Fixed continuous integration matrix for debug/release build. Made static debug build verbose. by blep ยท 13 years ago
- 42d52dd Added continuous integration matrix for debug/release build. Made static debug build verbose. by blep ยท 13 years ago
- f093dbc Added continuous integration matrix for shared/static library (specified through environment variables). by blep ยท 13 years ago
- aa05427 Added continuous integration failure e-mail notification. by blep ยท 13 years ago
- 27d703b Added clang compiler for continuous integration. by blep ยท 13 years ago
- 6385456 Added basic Travis CI integration contributed by Igor Okulist. by blep ยท 13 years ago
- 69ecb88 Fixed CMake / Unix build instructions. by blep ยท 13 years ago
- e6c4c62 - New CMake based build system. Based in part on contribution from by blep ยท 13 years ago
- c9d69a8 - Patch #3393345: BOOST_FOREACH compatibility. Made Json::iterator more standard compliant, added missing iterator_category and value_type typedefs (contribued by Robert A. Iannucci). by blep ยท 13 years ago
- 2e66044 Patch #3600941: Missing field copy in Json::Value::iterator causing infinite loop when using experimental internal map (#define JSON_VALUE_USE_INTERNAL_MAP) (contributed by Ming-Lin Kao). by blep ยท 13 years ago
- fc16871 Patch #3539678: Copy constructor does not initialize allocated_ for stringValue (contributed by rmongia). by blep ยท 13 years ago
- 0c5fa18 Fix gcc -Wall warnings (patch from Matt McCormick) by blep ยท 13 years ago
- fc1a161 Fixed warning(error?) on #if testing value of _MSC_VER without checking that it was defined. by blep ยท 13 years ago
- 496d691 Added missing "include/json/assertions.h" header in amalgamate.py. by blep ยท 13 years ago
- 01fafac Made it possible to drop null placeholders from array output. by aaronjacobs ยท 14 years ago
- ab1e40f Added an exit() to JSON_FAIL_MESSAGE to fix "no return" errors. by aaronjacobs ยท 14 years ago
- 427c23d Got rid of several unnecessary includes of <iostream>. by aaronjacobs ยท 14 years ago
- 586229b Made JSON_USE_EXCEPTION's value in config.h a default that can be overridden. by aaronjacobs ยท 14 years ago
- b8b7e7f Updated bug-fix list. by christopherdunn ยท 14 years ago
- b9e8bfa bug#2407932: strpbrk() could fail for NULL pointer. by christopherdunn ยท 14 years ago
- 60343ed bug#3306345: minor typo in Path::resolve() -- missing bang. by christopherdunn ยท 14 years ago
- fa4f614 (bug#3314841) Fixed JSON_IS_AMALGAMATION. Using os.path for OSX filename compatibility. by christopherdunn ยท 14 years ago
- 3861c71 More missing constructor initializers found by Coverity. by christopherdunn ยท 14 years ago
- 163d0bb Another simple addition for constructor initialization, PathArgument. by christopherdunn ยท 14 years ago
- 036fb11 Simple changes to Reader initialization, from Chromium folks. (I do not think this was submitted as a bug.) by christopherdunn ยท 14 years ago
- 6fd29b3 More eol changes. by christopherdunn ยท 14 years ago
- 1599fb5 Switched CRLF to LF in repo, and added svn:eol-style native. I might have missed a few files though. Just committing what I have so far. by christopherdunn ยท 14 years ago
- e1c212d Just testing whether I can still commit changes. I cannot tell my access-level from the sf project page. by christopherdunn ยท 14 years ago
- dcd50fa Fixed unit tests execution on MSVC 6 by removing usage of std::numeric_limits. It was returning 0 value in some max cases. Fixed Value::asFloat() to use integerToDouble(). by blep ยท 15 years ago
- 209aa05 Fixed compilation issues with MSVC 6: replace usage of ostringstream with valueToString to support 64 bits integer and high precision floating point conversion to string. Replace usage of ULL and LL literal with UInt64(expr) and Int64(expr). Introduced helper function uint64ToDouble() to work-around missing conversion. Unit tests do not pass yet. by blep ยท 15 years ago
- 39cff55 Fixed MSVS 2003, 2005 and 2008 tests execution by normalizing floating-point string representation using helper normalizeFloatingPointStr(). by blep ยท 15 years ago
- bcf6eaa Fixed unit test failure on IBM AIX xlC by hard-coding the maxUInt64AsDouble as double constant instead of relying on double(Value::maxUInt64) which produces an incorrect value. by blep ยท 15 years ago
- 186a42a - Fixed unit test compilation on MSVS 2003, 2005 and 2008. by blep ยท 15 years ago
- 7f9f22e Fixed some test bugs that show up when 64-bit mode is disabled. by aaronjacobs ยท 15 years ago
- 0320dc4 Added a few test cases that Google is using internally for patches made by aaronjacobs ยท 15 years ago
- 0396ea4 Another round of attempting to fix VC++ errors... by aaronjacobs ยท 15 years ago
- 91be2f2 Fixed more default cases. by aaronjacobs ยท 15 years ago
- 3995a71 Got rid of some unreachable code. by aaronjacobs ยท 15 years ago
- a0a3d04 Fixed a double -> float compilation warning/error. by aaronjacobs ยท 15 years ago
- 91f326a Reworked the type conversion system again, so that:A by aaronjacobs ยท 15 years ago
- b1d52f4 Made the unit test's output more readable, adding to jsontest's by aaronjacobs ยท 15 years ago
- ec15220 Made jsontest work with 64-bit integers, and fixed an error. by aaronjacobs ยท 15 years ago
- 0cc3409 Removed some out of date TODOs. by aaronjacobs ยท 15 years ago
- a717c33 Fixed test failures with 64-bit support disabled. by aaronjacobs ยท 15 years ago
- 1f9ed39 Fixed a 'comparison between signed and unsigned' error. by aaronjacobs ยท 15 years ago
- 234a4fe Added line breaks to make error messages easier to read. by aaronjacobs ยท 15 years ago
- 35ef5d0 Fixed a compilation warning/error. by aaronjacobs ยท 15 years ago
- 599e197 Gave a more consistent behavior to the Value::isFoo methods. See by aaronjacobs ยท 15 years ago
- 65f56d6 Fixed bugs in asInt64 and asUInt64. by aaronjacobs ยท 15 years ago
- 305c575 Added tests for default numeric values. by aaronjacobs ยท 15 years ago
- 01add14 Fixed a test bug. by aaronjacobs ยท 15 years ago
- 2642c30 Made tests more comprehensive. by aaronjacobs ยท 15 years ago
- 9187c99 Gave tests more general names in preparation for making them much more by aaronjacobs ยท 15 years ago
- 77bca68 Fixed some whitespace. by aaronjacobs ยท 15 years ago
- dd5afa7 Added tests for 64-bit integers. by aaronjacobs ยท 15 years ago
- 9010d42 Greatly fleshed out numeric type tests. by aaronjacobs ยท 15 years ago
- 1014e07 Added some missing checks. by aaronjacobs ยท 15 years ago
- f10e297 Renamed test cases to make more sense with the upcoming new behavior of by aaronjacobs ยท 15 years ago
- 076019b Fixed a whitespace problem. by aaronjacobs ยท 15 years ago
- 53ba088 Fixed a "comparison between signed and unsigned" warning/error. by aaronjacobs ยท 15 years ago
- 372dfee Added a .gitignore file, for ease of use with git-svn. by aaronjacobs ยท 15 years ago
- 5d9840a Fixed a missing include error. by aaronjacobs ยท 15 years ago
- 61bed1f Fixed a parsing bug in decodeNumber, updating the failing test cases to be by aaronjacobs ยท 15 years ago
- 5886b22 Added some test cases that catch a parsing bug. by aaronjacobs ยท 15 years ago
- b871bc8 Fixed a bunch of compilation errors when JSON_HAS_INT64 is set. by aaronjacobs ยท 15 years ago
- f5003b2 Centralized assertion macros and made them obey JSON_USE_EXCEPTION. by aaronjacobs ยท 15 years ago
- dda036c Made two security fixes. by aaronjacobs ยท 15 years ago
- bcd73bf Updated a cast to use a more appropriate type. by aaronjacobs ยท 15 years ago
- a123ad2 Fixed constructor initializer list order warnings/errors. by aaronjacobs ยท 15 years ago
- 31aca7f Removed an unused typedef. by aaronjacobs ยท 15 years ago
- 795f055 Fixed a hard to debug crash on OS X related to sscanf format strings. by aaronjacobs ยท 15 years ago
- ab4e0b9 Released 0.6.0-rc2 by blep ยท 15 years ago
- d4fca09 Release 0.6.0-rc2 by blep ยท 15 years ago
- 3922b4c Fixed typo: amalga*ma*te. Replaced macro JSON_IS_AMALGATED with JSON_IS_AMALGAMATION by blep ยท 15 years ago
- 2ff96e9 Value::compare() is now const and has an actual implementation with unit tests. by blep ยท 15 years ago
- 3bb9834 Untabified some sources by blep ยท 15 years ago
- fcd4ee2 - Added unit tests for comparison operators (except compare()) by blep ยท 15 years ago
- 8d10884 - Bug #3200841: removed "warning C4127: conditional expression is constant" concerning infinite loop by replacing while (true) with for (;;). Added new JSON_FAIL macro. Commented unused parameters. by blep ยท 15 years ago
- 9261975 Bug #3200841: removed "warning C4127: conditional expression is constant" concerning infinite loop by replacing while (true) with for (;;). by blep ยท 15 years ago
- 0a92343 Released 0.6.0-rc1 by blep ยท 15 years ago