- 01 Apr, 2015 1 commit
-
-
Milo Yip authored
tutorial.cpp: fix insitu parsing (closes #273)
-
- 31 Mar, 2015 2 commits
-
-
Philipp A. Hartmann authored
The insitu parsing example in the tutorial is using a local char buffer inside a nested scope. After leaving the scope, the resulting Document object still references this (now invalid) memory locations. Some compilers reuse this space on the stack for other local variables later in the function, corrupting the original document. Drop the local scope to extend the lifetime of the buffer.
-
Milo Yip authored
document.h: include <string>, iff RAPIDJSON_HAS_STDSTRING==1
-
- 30 Mar, 2015 1 commit
-
-
Philipp A. Hartmann authored
Reported-by: Janusz Chorko (@yachoor) See: https://github.com/miloyip/rapidjson/commit/c1c9ba7c#commitcomment-10434694
-
- 25 Mar, 2015 2 commits
- 24 Mar, 2015 5 commits
-
-
Philipp A. Hartmann authored
-
thebusytypist authored
-
Milo Yip authored
Exclude intermediate files from install of in-source build. (Issue #259)
-
thebusytypist authored
-
Milo Yip authored
Fix VS2012 compilation fail in stringbuffertest
-
- 23 Mar, 2015 1 commit
-
-
miloyip authored
-
- 13 Mar, 2015 2 commits
- 10 Mar, 2015 9 commits
-
-
Philipp A. Hartmann authored
RapidJSON is C++, need to set CMAKE_CXX_FLAGS instead of CMAKE_C_FLAGS when configuring the build environment.
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
(Accidentally dropped in 40c03114)
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
As discovered by @felipegb94, there are missing overloads to the `GenericValue::AddMember<T>` template function, taking an explicit `GenericValue&` as a name and accepting arbitrary primitive values. This patch adds the missing overloads. The `StringRefType` overload is needed to disambiguate the addition of a string literal as value. Some tests are added to `TEST(Value, Object)` in `valuetest.cpp`.
-
- 25 Feb, 2015 1 commit
-
-
Milo Yip authored
RapidJSON.pc.in: include dir not set
-
- 24 Feb, 2015 1 commit
-
-
Christian Hitz authored
Variable in wrong format is not replaced
-
- 23 Feb, 2015 4 commits
-
-
Andrii Senkovych authored
-
Milo Yip authored
Compilation fixes
-
Milo Yip authored
readme.md: improve build status rendering by Doxygen
-
Milo Yip authored
unittest.h: make sure to #include <stdexcept>
-
- 20 Feb, 2015 4 commits
-
-
Philipp A. Hartmann authored
Doxygen currently does not support images with links, which breaks the current rendering of the front page at https://miloyip.github.io/rapidjson. Move the status badges to a table with the links in the top-row instead. While at it, add a description below the logo and put the GitHub and documentation links into in itemisation.
-
Milo Yip authored
error.h: drop trailing comma in enum
-
Philipp A. Hartmann authored
In C++'98/03, trailing commas in enumerations are not allowed, but have been introduced in C++11. This patch drops the trailing commas in order to avoid compiler warnings (e.g. GCC with -pedantic). See #9 and http://code.google.com/p/rapidjson/issues/detail?id=49 for previous instances of this issue.
- 19 Feb, 2015 4 commits
-
-
Andrii Senkovych authored
-
Andrii Senkovych authored
-
Andrii Senkovych authored
-
Andrii Senkovych authored
-
- 18 Feb, 2015 2 commits
- 17 Feb, 2015 1 commit
-
-
unknown authored
-