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
2018-02-13Add transcoding/validation to Writer::RawValue()issue1153_rawvalueencodingMilo Yip
Fix #1152
2018-02-12Fix false alarm from clang-tidyMilo Yip
Fix #1174
2018-02-12Fix Compile error because of -Werror=effc++ is onMilo Yip
Fix #1170 Also fixed C++03 problem for using nullptr.
2018-02-12Fix invalid type in PointerMilo Yip
Fixed https://github.com/miloyip/rapidjson-gitbook/issues/1
2018-01-26Merge pull request #1068 from yurikhan/violationDetailsMilo Yip
Schema violation details
2018-01-26Merge pull request #1122 from svart-riddare/issue-1108Milo Yip
Suggestion for issue #1108
2018-01-26Merge pull request #1124 from DerDakon/CMake-cleanupMilo Yip
CMake cleanups
2018-01-16Fix -Werror=effc++Milo Yip
#1164
2018-01-13Merge branch 'master' into violationDetailsMilo Yip
2018-01-13Merge pull request #1065 from yurikhan/invalidSchemaPointerMilo Yip
Fix reported violated schema pointer when that schema is remote
2018-01-13Merge pull request #1161 from xiaoPierre/masterMilo Yip
Bug when switching to std regex
2018-01-13Merge pull request #1162 from Tencent/travisMilo Yip
Fix Travis build due to clang noexcept issue in unittest Fix #1159
2018-01-13Another try to fix travis buildtravisMilo Yip
2018-01-13Merge branch 'master' into travisMilo Yip
2018-01-13Try to fix travis buildMilo Yip
2018-01-11Bug when switching to std regexxiaoPierre
I could not switch to std regex after defining the two variables as in documents. Then I try to fix it in schema.h.
2018-01-10Merge pull request #1138 from Tencent/archiver_exampleMilo Yip
Add archiver example
2018-01-03Merge pull request #1148 from lelit/fix-filewritestream-docMilo Yip
Fix FileWriteStream doc
2017-12-30Merge pull request #1153 from Haffon/masterMilo Yip
GetParseOffset
2017-12-28GetParseOffset to GetErrorOffsetHaffon
2017-12-28GetParseOffset to GetErrorOffsetHaffon
2017-12-22Fix FileWriteStream docLele Gaifax
2017-12-22Merge pull request #1147 from DrumMeister/masterMilo Yip
Fix uninitilized member Reader::state_
2017-12-21Fix uninitilized member Reader::state_sjaques
2017-12-13Add archiver examplearchiver_exampleMilo Yip
A simple (de)serialization framework using DOM and SAX API
2017-12-13Merge pull request #1137 from pah/fixes/1131-iterator-deprecationMilo Yip
Avoid inheritance from std::iterator
2017-12-12Avoid inheritance from std::iteratorPhilipp A. Hartmann
Instead of inheriting from the deprecated std::iterator template, define the member typedefs needed for std::iterator_traits directly. Closes #1131.
2017-12-05Merge pull request #1129 from thorade/patch-1Milo Yip
ignore DS_Store files
2017-12-04Delete .DS_StoreMatthis Thorade
2017-12-04Delete .DS_StoreMatthis Thorade
2017-12-04Delete .DS_StoreMatthis Thorade
2017-12-04ignore DS_Store filesMatthis Thorade
2017-11-27Added relevant unit tests for issue #1108 suggested improvement.Étienne Dupuis
2017-11-24CMake: automatically handle C++11 settings if possibleRolf Eike Beer
2017-11-24CMake: do not pass -march=native or -mcpu=native when crosscompilingRolf Eike Beer
2017-11-24CMake: avoid neeless variable expansionRolf Eike Beer
CMake will automatically expand strings that are variable names in if().
2017-11-23Solves #1108. The default copy constructor of GenericPointer will use the ↵Étienne Dupuis
allocator of the copied object. The extra copy constructor that takes an allocator as a parameter is distinct if someone really wants to create a copy with a null allocator.
2017-11-04Merge pull request #1110 from martinlindhe/masterMilo Yip
fix some typos
2017-11-04fix some typosMartin Lindhe
2017-10-27Merge pull request #1105 from clach04/issue_1104_solaris_freadMilo Yip
Fix issue #1104 Solaris compilation errors fread()/fwrite()
2017-10-27Fix issue #1104 Solaris compilation errors fread()/fwrite()clach04
Explicit std name space for fread() and fwrite().
2017-10-26Merge pull request #1102 from m-tayel/1019-proposed-fixMilo Yip
Fixed typo in CMake file
2017-10-24Fixed typo in CMake fileM.Tayel
2017-10-20Merge pull request #1070 from KaitoHH/line-colMilo Yip
Add feature of locating line and column number of error
2017-10-20Merge pull request #1081 from datatypevoid/patch-1Milo Yip
chore: correct spelling
2017-10-20Merge pull request #1083 from piotr-kaminski-intel/masterMilo Yip
Removing Klocwork issues from schema.h
2017-10-20Add anchors to Schema.mdMilo Yip
2017-10-20Fix schema.md TOCMilo Yip
2017-10-20Merge pull request #1098 from h46incon/MemberCapacityMilo Yip
Add MemberCapacity() and MemberReserve() interface for object type.
2017-10-19Add MemberCapacity() and MemberReserve() interface for object type.h46incon