Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-05-20Merge branch 'master' of https://github.com/Tencent/rapidjson into id-and-refSteve Hanson
2021-03-24add traverse as pointer examplemiloyip
2021-02-26fix compile errorsSteve Hanson
2021-01-29remove C++ 11 std::string to_string() syntaxSteve Hanson
2021-01-28remove debug std::cout, handle empty error object in exampleSteve Hanson
2021-01-28code and testsSteve Hanson
2019-12-03Merge pull request #1502 from ylavic/compilation_fixesMilo Yip
Compilation fixes
2019-08-23fixed Uint case in docsMikhail Boldyrev
2019-05-09Fix compilation of sortkeys.cpp with MSVC 2013 (hopefully).ylavic
2019-02-11Workaround of sortkeys exampleMilo Yip
2019-02-08Adding swap() for GenericMemberMilo Yip
2019-02-06Fix gcc compilation error in sortkeysMilo Yip
2019-02-06Update sortkeys.cppMilo Yip
2018-12-05removed std::string and receiving const Value in printItseky
2018-12-05added example for sorting keysseky
2018-02-19Misc. typosluz.paz
Found via `codespell -q 3` in downstream https://github.com/BlueBrain/Brayns
2018-02-13Fix Windows buildMilo Yip
2018-02-12Fix Compile error because of -Werror=effc++ is onMilo Yip
Fix #1170 Also fixed C++03 problem for using nullptr.
2018-01-26Merge pull request #1068 from yurikhan/violationDetailsMilo Yip
Schema violation details
2018-01-16Fix -Werror=effc++Milo Yip
#1164
2018-01-13Merge branch 'master' into violationDetailsMilo Yip
2017-12-13Add archiver examplearchiver_exampleMilo Yip
A simple (de)serialization framework using DOM and SAX API
2017-09-24Update schemavalidator example to demonstrate GetError()Yuri Khan
2017-05-11Fix #947 -Weffc++ warningMilo Yip
2017-03-13Remove all switchJohn Stiles
2017-03-13Initialize v_ to placate GCCJohn Stiles
v_ has a value assigned to it as part of ParseNext() which happens in the constructor, but that’s not soon enough for GCC
2017-03-13Remove switchJohn Stiles
GCC and Clang cannot agree on what constitutes a good switch statement.
2017-03-13Improve LookaheadParserJohn Stiles
Fix clang -Wswitch-enum warnings. Made NextArrayValue() more robust—now handles error state correctly, will enter error state if an unexpected state is reached. Made separate states for each value type to simplify getters. Simplified implementation of skipping arrays and objects. Skipping an object now works whether you’ve retrieved the key or not.
2017-03-09Merge remote-tracking branch 'refs/remotes/origin/lookaheadparser'John Stiles
2017-03-08Fix GCC warningStilesCrisis
2017-03-08Add lookahead parser exampleStilesCrisis
2017-03-08Fix -Werror=effc++ errors with GNU 6.3.1Ted Lyngmo
Fix "'MyHandler::type’ should be initialized in the member initialization list [-Werror=effc++]" errors. https://github.com/miloyip/rapidjson/issues/874
2017-03-08Fix -Werror=effc++ errors with GNU 6.3.1Ted Lyngmo
Fix "'MyHandler::type’ should be initialized in the member initialization list [-Werror=effc++]" errors. https://github.com/miloyip/rapidjson/issues/874
2017-02-04More C++98 fixesStilesCrisis
2017-02-04SimplePullReader C++98 supportStilesCrisis
std::to_string can’t be used because it requires C++11.
2017-02-04Clean up example codeStilesCrisis
2017-02-04Add example SimplePullHandler codeStilesCrisis
Example code to demonstrate how the token-pulling reader can be used.
2017-01-19Treat signed-unsigned conversions as errors.Zhihao Yuan
2016-08-29Defer thread creation in parsebypart exampleMilo Yip
2016-06-13Disable parsebyparts example for clangMilo Yip
2016-04-23Fix gcc warningMilo Yip
2016-04-23Change FilterKeyHandler from struct to classMilo Yip
Also disable copy constructor/assignment operator
2016-04-23Add filterkey and filterkeydom examplesMilo Yip
2016-04-21Try to fix cmake CMP0054 warningMilo Yip
2016-04-04Try to fix all /W4 warnings in VC2015Milo Yip
2016-03-08Update simplewriter example with Writer::Key()Milo Yip
2016-03-06[simplewriter.cpp] show generated outputChris Lundquist
This makes it painfully obvious that writer expects subsequent key/value pairs.
2016-03-04Try another fixMilo Yip
2016-03-04Fix example clang link flagsMilo Yip
2016-03-04Normalize line endings but not JSON filesMilo Yip