1. 01 Jul, 2016 2 commits
  2. 30 Jun, 2016 1 commit
    • Jason Smith's avatar
      Fix buffer overrun using PutN (closes #672) · 252e8122
      Jason Smith authored
      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.
      252e8122
  3. 29 Jun, 2016 1 commit
  4. 28 Jun, 2016 1 commit
  5. 27 Jun, 2016 3 commits
  6. 23 Jun, 2016 1 commit
    • Philipp A. Hartmann's avatar
      Fix warnings on GCC 6 and later (closes #666) · f6a07692
      Philipp A. Hartmann authored
      * document.h
        * suppress -Wterminate on GCC 6.x and later
        * simplify warning handling
      * schema.h
        * drop RAPIDJSON_NOEXCEPT from GenericSchemaDocument constructor
          (calls RAPIDJSON_NEW anyway)
        * simplify warning handling
          (avoids RAPIDJSON_POP mismatch on Clang)
      * encodingtest.cpp, istreamwrappertest.cpp
        * work around -Wdangling-else
      * readertest.cpp
        * suppress -Wdangling-else
      f6a07692
  7. 15 Jun, 2016 5 commits
  8. 14 Jun, 2016 8 commits
  9. 13 Jun, 2016 11 commits
  10. 10 Jun, 2016 4 commits
  11. 08 Jun, 2016 1 commit
  12. 23 May, 2016 1 commit
  13. 20 May, 2016 1 commit
    • Michael Thon's avatar
      Allow options for writing and parsing NaN/Infinity · 135da7ab
      Michael Thon authored
      This adds kWriteNanAndInfFlag to Writer to allow writing of nan,
      inf and -inf doubles as "NaN", "Infinity" and "-Infinity",
      respectively, and kParseNanAndInfFlag to Reader to allow parsing
      of "NaN", "Inf", "Infinity", "-Inf" and "-Infinity". This is part
      of issue #36, adding optional support for relaxed JSON syntax.
      135da7ab