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
2017-09-29remove unnecessary codeKaitoHH
2017-09-29add cursor wrapperKaitoHH
2017-09-29suppress C4512, C4702 warningKaitoHH
2017-09-29fix stream wrapper initializerKaitoHH
fix initialization warning add special wrapper for AutoUTFInputStream
2017-09-29Add feature of locating line and column number of errorKaitoHH
2016-07-01Fix buffer overrun using PutN (closes #672)Jason Smith
Fix inconsistent calling of template functions in PutN in stream.h. When used with a GenericStringBuffer<<UTF8>, MemoryPoolAllocator>, PutN would call PutReserve from stream.h, and PutUnsafe from stringbuffer.h. This resulted in bytes being added to the buffer without allocating space. This was not an issue when used with the default memory allocator, because in this case the specialized PutN is used from stringbuffer.h.
2016-02-02Add fwd.h and extract stream.hMilo Yip