- 06 Dec, 2015 3 commits
- 04 Dec, 2015 1 commit
-
-
Michael Haubenwallner authored
When _MSC_VER and _M_ARM is defined, this is some Windows ARM target using little-endian byte order.
-
- 01 Dec, 2015 1 commit
-
-
Milo Yip authored
use <wchar.h> with C++ linkage on Windows ARM
-
- 30 Nov, 2015 4 commits
-
-
Michael Haubenwallner authored
Instead of commenting that we should, just do include <wchar.h> with C++ linkage when compiling for Windows on ARM. Actually, omitting the C linkage really should be enough here.
-
Milo Yip authored
Fix #483 by using the correct value type
-
Milo Yip authored
-
Milo Yip authored
fix typos and dead links in docs
-
- 28 Nov, 2015 2 commits
-
-
Wenhao Liu authored
-
Wenhao Liu authored
-
- 27 Nov, 2015 1 commit
-
-
Milo Yip authored
GenericDocument: add implicit conversion to ParseResult
-
- 26 Nov, 2015 3 commits
-
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
To simplify the error handling, this commit adds an implicit conversion of GenericDocument to ParseResult, allowing code like (already in the documentation): ParseResult ok = doc.Parse(json); if (!ok) // ...
-
Milo Yip authored
fix Document::Parse(const Ch*) for transcoding
-
- 25 Nov, 2015 1 commit
-
-
Michael Haubenwallner authored
To allow for an UTF16-Document to Parse(UTF8), the Parse() argument has to be UTF8-compatible.
-
- 17 Nov, 2015 1 commit
-
-
Milo Yip authored
documenttest.cpp: EXPECT_THROW when checking empty allocator (closes #469)
-
- 16 Nov, 2015 1 commit
-
-
Philipp A. Hartmann authored
In the MoveConstructor/MoveAssignment tests, a check for a `NULL` allocator return has been used to check for the correct moved-from state of a Document. After the merge of #426, the GetAllocator call fails with an assertion, if the allocator of a GenericDocument is NULL. Check for the throw, instead of NULL in the move-related tests. Tested with GCC 4.9 on Linux with C++11 enabled. Reported-by: @woldendans
-
- 30 Oct, 2015 1 commit
-
-
Milo Yip authored
Adding coapp definition
-
- 29 Oct, 2015 3 commits
- 28 Oct, 2015 1 commit
-
-
Milo Yip authored
-
- 27 Oct, 2015 3 commits
- 26 Oct, 2015 2 commits
- 22 Oct, 2015 1 commit
-
-
Milo Yip authored
-
- 15 Oct, 2015 3 commits
-
-
Milo Yip authored
Add missing return statement, fix #448
-
etiennebatise authored
-
Milo Yip authored
Add break at default switch case statements fix #444
-
- 14 Oct, 2015 2 commits
-
-
etiennebatise authored
fix issue #444
-
Milo Yip authored
Introduce comments support
-
- 13 Oct, 2015 1 commit
-
-
Andrey authored
* Comments parsing function correctly handles EOF. * Since SkipWhitespaceAndComments can generate errors, its calls should be followed by RAPIDJSON_PARSE_ERROR_EARLY_RETURN macro. * Some tests to make the bug never appear again.
-
- 11 Oct, 2015 1 commit
-
-
Andrey authored
-
- 10 Oct, 2015 1 commit
-
-
FrankHB authored
<algorith> should be <algorithm>.
-
- 09 Oct, 2015 1 commit
-
-
Sean Leather authored
Might help some people see things better when skimming.
-
- 08 Oct, 2015 1 commit
-
-
Milo Yip authored
Keep Document value unchanged on parse error, fixes #437
-
- 07 Oct, 2015 1 commit
-
-
Philipp A. Hartmann authored
-