- 79afe06 fix stdexcept by christopherdunn · 12 years ago master
- f4c7824 Fixed a test that causes a crash when exceptions are disabled. by aaronjacobs · 12 years ago
- 11d5ff5 Added structured error reporting to Reader. by aaronjacobs · 12 years ago
- 23304aa Added features that allow the reader to accept common non-standard JSON. by aaronjacobs · 12 years ago
- 2bb2531 vim modeline by christopherdunn · 12 years ago
- 6921bf1 Comment reading/write improvements by christopherdunn · 12 years ago
- 2c9407e JSON_ASSERT -> JSON_ASSERT_MESSAGE by christopherdunn · 12 years ago
- 69466ba Added missing includes for std::istream. by aaronjacobs · 12 years ago
- 227473a Fixed broken build on VS 2012 by blep · 12 years ago
- 523ce86 Fixed some snprintf-related build breakages in Visual Studio. by aaronjacobs · 12 years ago
- dda8bcc Updated two calls to sprintf that I missed in r269. by aaronjacobs · 12 years ago
- 14ce6f7 Replaced the complex implementation of valueToString(double). by aaronjacobs · 12 years ago
- 54e8ee9 Added more floating point tests. by aaronjacobs · 12 years ago
- 95b925c Added further floating point tests. by aaronjacobs · 12 years ago
- 1183bd0 Switched away from sprintf, which is prone to buffer overflows. by aaronjacobs · 12 years ago
- 77080da - CMake: added option to turn fail compilation if warning occurs, and warning level 4 with MSVC. by blep · 13 years ago
- 4c64846 - disabled warning 4786 for VS6 caused by STL (identifier was truncated to '255' characters in the debug information) by blep · 13 years ago
- df596e4 Added simple batch build script for CMake. by blep · 13 years ago
- 7b03538 Added missing source file to CMakeLists.txt. by blep · 13 years ago
- 369a2eb by blep · 13 years ago
- 665c7a6 Fixed continuous integration matrix for debug/release build. Made static debug build verbose. by blep · 13 years ago
- ca29c63 Added continuous integration matrix for debug/release build. Made static debug build verbose. by blep · 13 years ago
- 7643fc9 Added continuous integration matrix for shared/static library (specified through environment variables). by blep · 13 years ago
- ee8c96a Added continuous integration failure e-mail notification. by blep · 13 years ago
- 4f55f15 Added clang compiler for continuous integration. by blep · 13 years ago
- 35b6628 Added basic Travis CI integration contributed by Igor Okulist. by blep · 13 years ago
- 7aaeba8 Fixed CMake / Unix build instructions. by blep · 13 years ago
- 56bb9e1 - New CMake based build system. Based in part on contribution from by blep · 13 years ago
- a557887 - 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
- a339d07 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
- bb21ba9 Patch #3539678: Copy constructor does not initialize allocated_ for stringValue (contributed by rmongia). by blep · 13 years ago
- 90e99a8 Fix gcc -Wall warnings (patch from Matt McCormick) by blep · 13 years ago
- 4aea90f Fixed warning(error?) on #if testing value of _MSC_VER without checking that it was defined. by blep · 13 years ago
- fefd159 Added missing "include/json/assertions.h" header in amalgamate.py. by blep · 13 years ago
- 785244e Made it possible to drop null placeholders from array output. by aaronjacobs · 14 years ago
- 6791fa8 Added an exit() to JSON_FAIL_MESSAGE to fix "no return" errors. by aaronjacobs · 14 years ago
- e91deda Got rid of several unnecessary includes of <iostream>. by aaronjacobs · 14 years ago
- 4e1929b Made JSON_USE_EXCEPTION's value in config.h a default that can be overridden. by aaronjacobs · 14 years ago
- 697e7d7 Updated bug-fix list. by christopherdunn · 15 years ago
- b06381a bug#2407932: strpbrk() could fail for NULL pointer. by christopherdunn · 15 years ago
- 6af0e77 bug#3306345: minor typo in Path::resolve() -- missing bang. by christopherdunn · 15 years ago
- 753fccc (bug#3314841) Fixed JSON_IS_AMALGAMATION. Using os.path for OSX filename compatibility. by christopherdunn · 15 years ago
- f12907d More missing constructor initializers found by Coverity. by christopherdunn · 15 years ago
- eea4b98 Another simple addition for constructor initialization, PathArgument. by christopherdunn · 15 years ago
- 0200d25 Simple changes to Reader initialization, from Chromium folks. (I do not think this was submitted as a bug.) by christopherdunn · 15 years ago
- a0090c0 More eol changes. by christopherdunn · 15 years ago
- b0d4eca 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 · 15 years ago
- 331367c Just testing whether I can still commit changes. I cannot tell my access-level from the sf project page. by christopherdunn · 15 years ago
- 07fbd57 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
- 4f40e17 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
- c891cb3 Fixed MSVS 2003, 2005 and 2008 tests execution by normalizing floating-point string representation using helper normalizeFloatingPointStr(). by blep · 15 years ago
- 732bd6c 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
- cfc2a4c - Fixed unit test compilation on MSVS 2003, 2005 and 2008. by blep · 15 years ago
- 30fe9d8 Fixed some test bugs that show up when 64-bit mode is disabled. by aaronjacobs · 15 years ago
- 9004bcb Added a few test cases that Google is using internally for patches made by aaronjacobs · 15 years ago
- 31f6818 Another round of attempting to fix VC++ errors... by aaronjacobs · 15 years ago
- 710d60d Fixed more default cases. by aaronjacobs · 15 years ago
- c5a7a25 Got rid of some unreachable code. by aaronjacobs · 15 years ago
- b810dcf Fixed a double -> float compilation warning/error. by aaronjacobs · 15 years ago
- 88ae3e3 Reworked the type conversion system again, so that:A by aaronjacobs · 15 years ago
- f76492f Made the unit test's output more readable, adding to jsontest's by aaronjacobs · 15 years ago
- ab327d3 Made jsontest work with 64-bit integers, and fixed an error. by aaronjacobs · 15 years ago
- 9a134f9 Removed some out of date TODOs. by aaronjacobs · 15 years ago
- d353913 Fixed test failures with 64-bit support disabled. by aaronjacobs · 15 years ago
- 0f5ac3d Fixed a 'comparison between signed and unsigned' error. by aaronjacobs · 15 years ago
- 58ae5bc Added line breaks to make error messages easier to read. by aaronjacobs · 15 years ago
- e49290c Fixed a compilation warning/error. by aaronjacobs · 15 years ago
- d2c255c7 Gave a more consistent behavior to the Value::isFoo methods. See by aaronjacobs · 15 years ago
- 0cbc688 Fixed bugs in asInt64 and asUInt64. by aaronjacobs · 15 years ago
- 2c33d88 Added tests for default numeric values. by aaronjacobs · 15 years ago
- 1d3216f Fixed a test bug. by aaronjacobs · 15 years ago
- 69052b1 Made tests more comprehensive. by aaronjacobs · 15 years ago
- 8f2078b Gave tests more general names in preparation for making them much more by aaronjacobs · 15 years ago
- 0ace1a8 Fixed some whitespace. by aaronjacobs · 15 years ago
- da9f146 Added tests for 64-bit integers. by aaronjacobs · 15 years ago
- ee6de2b Greatly fleshed out numeric type tests. by aaronjacobs · 15 years ago
- 682441c Added some missing checks. by aaronjacobs · 15 years ago
- 9e8b80d Renamed test cases to make more sense with the upcoming new behavior of by aaronjacobs · 15 years ago
- 86bf4b8 Fixed a whitespace problem. by aaronjacobs · 15 years ago
- a5713c7 Fixed a "comparison between signed and unsigned" warning/error. by aaronjacobs · 15 years ago
- c08feee Added a .gitignore file, for ease of use with git-svn. by aaronjacobs · 15 years ago
- 380eb02 Fixed a missing include error. by aaronjacobs · 15 years ago
- 9d960e8 Fixed a parsing bug in decodeNumber, updating the failing test cases to be by aaronjacobs · 15 years ago
- 99cfbb1 Added some test cases that catch a parsing bug. by aaronjacobs · 15 years ago
- 6aed2fd Fixed a bunch of compilation errors when JSON_HAS_INT64 is set. by aaronjacobs · 15 years ago
- af4a030 Centralized assertion macros and made them obey JSON_USE_EXCEPTION. by aaronjacobs · 15 years ago
- 76ef4e8 Made two security fixes. by aaronjacobs · 15 years ago
- 8817aff Updated a cast to use a more appropriate type. by aaronjacobs · 15 years ago
- b2a2497 Fixed constructor initializer list order warnings/errors. by aaronjacobs · 15 years ago
- b80bdfd Removed an unused typedef. by aaronjacobs · 15 years ago
- 272993a Fixed a hard to debug crash on OS X related to sscanf format strings. by aaronjacobs · 15 years ago
- fff3de3 Released 0.6.0-rc2 by blep · 15 years ago
- 889e564 Release 0.6.0-rc2 by blep · 15 years ago
- 41baeeb Fixed typo: amalga*ma*te. Replaced macro JSON_IS_AMALGATED with JSON_IS_AMALGAMATION by blep · 15 years ago
- 7e25266 Value::compare() is now const and has an actual implementation with unit tests. by blep · 15 years ago
- a0da0f2 Untabified some sources by blep · 15 years ago
- bb2dcfc - Added unit tests for comparison operators (except compare()) by blep · 15 years ago
- 7faab5d - 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
- 031cb16 Bug #3200841: removed "warning C4127: conditional expression is constant" concerning infinite loop by replacing while (true) with for (;;). by blep · 15 years ago
- a4f5e6f Released 0.6.0-rc1 by blep · 15 years ago