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 (Expand)Author
2014-09-16Minor refactoring before optimization trialMilo Yip
2014-09-16Minor optimizations in BigIntegerMilo Yip
2014-09-16Added missing filesMilo Yip
2014-09-16Extract classes into various files.Milo Yip
2014-09-16Minor code cleaningMilo Yip
2014-09-16Trimming leading/trailing zeros and correct underflow caseMilo Yip
2014-09-15Fix round towards evenmiloyip
2014-09-15Limit significand to 17 digits for fast pathmiloyip
2014-09-14Remove unused BigInteger::operator+=(const BigInteger&)Milo Yip
2014-09-14Fix normal-subnormal boundary and add more boundary cases in unit tests.Milo Yip
2014-09-14Add 32-bit support for custom strtodMilo Yip
2014-09-14Makes gcc x64 runnable, but failed on one case. [ci skip]Milo Yip
2014-09-13Make custom strtod work for denormal numbers and some boundary cases [ci skip]Milo Yip
2014-09-12Implementing custom strtod, fail on some cases [ci skip]Milo Yip
2014-09-10Extract conversion code to strtod.h [ci skip]Milo Yip
2014-09-10Prepare custom strtod data. (cannot pass unit test) [ci skip]miloyip
2014-09-05Optimize ParseNumber()miloyip
2014-09-05Merge master and implement kParseFullPrecisionMilo Yip
2014-09-05Refactor ParseNumber for two modes (incomplete)Milo Yip
2014-09-04finally fixing `Reader::ParseString()`Kosta
2014-09-04more changesKosta
2014-09-04fix for `Reader::ParseString()` implementation plus some minor code cleanups ...Kosta
2014-09-04reunified `ParseKey`, `ParseString`, and `ParseStringOrKey` againKosta
2014-09-04fix `simplereader.cpp` and the `Key()->String()` forwarding in `BaseReaderHan...Kosta
2014-09-04add `Key()` method to `Writer` and `PrettyWriter`Kosta
2014-09-04add `Key()` method to the `Handler` conceptKosta
2014-09-03Check "fast path cases in disguise" in strtodmiloyip
2014-09-03Merge pull request #128 from pah/feature/cxx11-moveMilo Yip
2014-09-03Merge pull request #127 from pah/feature/value-different-allocatorsMilo Yip
2014-09-02Fallback strtod() when not able to do fast-pathmiloyip
2014-09-02Merge pull request #130 from pah/fixes/capacity-growthMilo Yip
2014-09-01fixed a compiler error not caught by VS2012...Kosta
2014-09-01allow the short string optimization to store one more characterKosta
2014-09-01GenericValue: round up during capacity growthPhilipp A. Hartmann
2014-09-01code cleanup for `StringEqual()`Kosta
2014-09-01short string optimizationKosta
2014-09-01GenericValue: reduce growth factor for array/object reallocationsPhilipp A. Hartmann
2014-09-01GenericStringRef: add NOEXCEPT, add ASSERTPhilipp A. Hartmann
2014-09-01GenericValue: add some more RAPIDJSON_NOEXCEPTPhilipp A. Hartmann
2014-08-31GenericValue: fix comparison of (Ui|I)nt64 numbersPhilipp A. Hartmann
2014-08-31GenericValue: add RAPIDJSON_NOEXCEPTPhilipp A. Hartmann
2014-08-31GenericValue: add rvalue-ref overloads to AddMember/PushBackPhilipp A. Hartmann
2014-08-31always define RAPIDJSON_HAS_STDSTRING (default: 0)Philipp A. Hartmann
2014-08-31detect rvalue reference support (RAPIDJSON_HAS_CXX11_RVALUE_REFS)Philipp A. Hartmann
2014-08-31rapidjson.h: add RAPIDJSON_GNUC as GCC version shortcutPhilipp A. Hartmann
2014-08-31meta.h: disallow direct inclusionPhilipp A. Hartmann
2014-08-31always include "meta.h", as it is not only used for member iteratorsPhilipp A. Hartmann
2014-08-31GenericValue: add move constructor/move assignmentPhilipp A. Hartmann
2014-08-31GenericValue: add explicit operator!=(const Ch*)Philipp A. Hartmann
2014-08-31GenericValue: add and use IsGenericValue meta functionPhilipp A. Hartmann