|
From: <jso...@li...> - 2011-05-02 16:51:53
|
Revision: 183
http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=183&view=rev
Author: blep
Date: 2011-05-02 16:51:48 +0000 (Mon, 02 May 2011)
Log Message:
-----------
- 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.
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_reader.cpp
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2011-05-25 03:16:55
|
Revision: 215
http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=215&view=rev
Author: aaronjacobs
Date: 2011-05-25 03:16:49 +0000 (Wed, 25 May 2011)
Log Message:
-----------
Fixed bugs in asInt64 and asUInt64.
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2011-05-25 23:27:04
|
Revision: 221
http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=221&view=rev
Author: aaronjacobs
Date: 2011-05-25 23:26:58 +0000 (Wed, 25 May 2011)
Log Message:
-----------
Removed some out of date TODOs.
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2011-05-26 20:14:37
|
Revision: 233
http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=233&view=rev
Author: blep
Date: 2011-05-26 20:14:32 +0000 (Thu, 26 May 2011)
Log Message:
-----------
Fixed MSVS 2003, 2005 and 2008 tests execution by normalizing floating-point string representation using helper normalizeFloatingPointStr().
Modified Paths:
--------------
trunk/jsoncpp/src/jsontestrunner/main.cpp
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2011-05-26 22:55:29
|
Revision: 234
http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=234&view=rev
Author: blep
Date: 2011-05-26 22:55:24 +0000 (Thu, 26 May 2011)
Log Message:
-----------
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.
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/test_lib_json/jsontest.cpp
trunk/jsoncpp/src/test_lib_json/jsontest.h
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2011-05-27 08:12:47
|
Revision: 235
http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=235&view=rev
Author: blep
Date: 2011-05-27 08:12:41 +0000 (Fri, 27 May 2011)
Log Message:
-----------
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().
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2013-08-08 00:39:14
|
Revision: 272
http://sourceforge.net/p/jsoncpp/code/272
Author: aaronjacobs
Date: 2013-08-08 00:39:12 +0000 (Thu, 08 Aug 2013)
Log Message:
-----------
Replaced the complex implementation of valueToString(double).
The previous one was confusing and prone to buffer overflows, and didn't
work correctly with 16-decimal-digit numbers. The new one simply uses
snprintf with a standard format string.
The major change is that we don't always print a decimal point now.
Fortunately, JSON doesn't distinguish between integers and reals.
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_writer.cpp
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2013-08-08 23:08:30
|
Revision: 274
http://sourceforge.net/p/jsoncpp/code/274
Author: aaronjacobs
Date: 2013-08-08 23:08:28 +0000 (Thu, 08 Aug 2013)
Log Message:
-----------
Fixed some snprintf-related build breakages in Visual Studio.
Modified Paths:
--------------
trunk/jsoncpp/src/jsontestrunner/main.cpp
trunk/jsoncpp/src/lib_json/json_reader.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2014-04-19 06:37:24
|
Revision: 277
http://sourceforge.net/p/jsoncpp/code/277
Author: christopherdunn
Date: 2014-04-19 06:37:23 +0000 (Sat, 19 Apr 2014)
Log Message:
-----------
JSON_ASSERT -> JSON_ASSERT_MESSAGE
This way, assertions can produce exceptions.
https://sourceforge.net/p/jsoncpp/bugs/67/
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2014-04-19 21:41:06
|
Revision: 279
http://sourceforge.net/p/jsoncpp/code/279
Author: christopherdunn
Date: 2014-04-19 21:41:03 +0000 (Sat, 19 Apr 2014)
Log Message:
-----------
vim modeline
http://vim.wikia.com/wiki/Modeline_magic
Modified Paths:
--------------
trunk/jsoncpp/src/jsontestrunner/main.cpp
trunk/jsoncpp/src/lib_json/json_batchallocator.h
trunk/jsoncpp/src/lib_json/json_internalarray.inl
trunk/jsoncpp/src/lib_json/json_internalmap.inl
trunk/jsoncpp/src/lib_json/json_reader.cpp
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/lib_json/json_valueiterator.inl
trunk/jsoncpp/src/lib_json/json_writer.cpp
trunk/jsoncpp/src/test_lib_json/jsontest.cpp
trunk/jsoncpp/src/test_lib_json/jsontest.h
trunk/jsoncpp/src/test_lib_json/main.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|