- 29 Sep, 2017 1 commit
-
-
Milo Yip authored
-
- 14 Sep, 2017 1 commit
-
-
Milo Yip authored
-
- 13 Sep, 2017 1 commit
-
-
Milo Yip authored
-
- 07 Sep, 2017 1 commit
-
-
Milo Yip authored
Assert Type enum lower bound as well
-
- 06 Sep, 2017 5 commits
-
-
Christopher Warrington authored
-
Milo Yip authored
Guard against min/max being macros in a cross-compiler way
-
Milo Yip authored
Fix Windows doc build MSBuild error MSB6001
-
Christopher Warrington authored
-
Christopher Warrington authored
Sometimes, particularly when Microsoft's windows.h is included, min/max are defined as macros, interfering with use of std::numeric_limits::min() and the like. To guard against this, the function name is wrapped in an extra set of parenthesis, which inhibits function-style macro expansion.
-
- 05 Sep, 2017 1 commit
-
-
Christopher Warrington authored
When using a MSBuild-based CMake generator like 'Visual Studio 15 2017 Win64', the doc build was failing with the error 'MSB6001: Invalid command line switch for "cmd.exe". Illegal characters in path.' This was due to the dependency on Doxyfile*, which wasn't expanded by CMake. The fix is to expand this glob in CMake before specifying the custom command's dependencies. Partial fix for https://github.com/miloyip/rapidjson/issues/622
-
- 04 Sep, 2017 2 commits
- 02 Sep, 2017 1 commit
-
-
Crunkle authored
-
- 01 Sep, 2017 1 commit
-
-
Minmin Gong authored
-
- 07 Aug, 2017 4 commits
- 05 Aug, 2017 4 commits
- 28 Jul, 2017 2 commits
-
-
Milo Yip authored
Issue #1028: Visual Studio natvis file.
-
Bart Muzzin authored
-
- 13 Jul, 2017 2 commits
- 11 Jul, 2017 2 commits
- 10 Jul, 2017 6 commits
-
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
* Upgrade to the latest Doxygen version 1.8.13 * Drop unused variable DOXYGEN_BIN * Reenable --single-branch (travis-ci/travis-ci#5225 is closed)
-
Milo Yip authored
Travis: Switch to Ubuntu 14.04 (Trusty)
-
Milo Yip authored
Improve handling of NULL strings
-
Milo Yip authored
ParseResult: improve bool conversion and add operator!=
-
Milo Yip authored
Tutorial: fix typos in examples and broken links
-
- 09 Jul, 2017 4 commits
-
-
Philipp A. Hartmann authored
* Safely assert upon passing NULL string without length (requires usage of RAPIDJSON_ASSERT within an expression) * Allow using a NULL string together with an explicit length 0 (GenericStringRef, GenericValue::SetString, ...), see #817 * Add GenericValue::SetString(StringRefType, Allocator&) overload * Add tests for the various cases
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
-
Philipp A. Hartmann authored
* Use safe-bool idiom for boolean conversion to avoid accidental misuse of ParseResult values (closes #989) * Add operator!= to support more comparison expressions (previously silently/erroneously used operator bool)
-
- 30 Jun, 2017 2 commits
-
-
Leo Mehr authored
-
Leo Mehr authored
In the move example, the code uses `contacts` when the diagrams use `contact` (no 's') The code in the example: ``` Value contacts(kArrayType); // adding elements to contacts array. // ... o.AddMember("contacts", contacts, d.GetAllocator()); // deep clone contacts (may be with lots of allocations) // destruct contacts. ```
-