1. 06 Mar, 2019 1 commit
  2. 11 Feb, 2019 2 commits
  3. 08 Feb, 2019 1 commit
  4. 06 Feb, 2019 6 commits
  5. 01 Feb, 2019 1 commit
  6. 24 Jan, 2019 1 commit
  7. 10 Jan, 2019 1 commit
    • ylavic's avatar
      Use the allocator of the Schema for its Pointer. · dbb594bd
      ylavic authored
      The Pointer passed to construct the Schema can be from the stack or any
      transient storage, so the copy stored in the Schema must have the same
      lifetime/allocator as the Schema itself.
      dbb594bd
  8. 19 Dec, 2018 1 commit
  9. 18 Dec, 2018 2 commits
  10. 17 Dec, 2018 2 commits
  11. 12 Dec, 2018 2 commits
    • ylavic's avatar
      Speed up Pointer::operator<(). · eb6ee17d
      ylavic authored
      Speed is more important than alphabetical order (which makes few sense in
      JSON in general, and with pointers especially). The use case is indexing
      in std containers, i.e. O(log n) with rbtree, so the faster comparison
      the better.
      eb6ee17d
    • ylavic's avatar
      Rework Pointer::operator<() loop. · 0e34ed43
      ylavic authored
      I must be too dumb to understand the mess MSVC (32bit only) did with the
      previous loop, and to figure out how it might have make it never end.
      Anyway, hopefully any compiler can grok this new loop...
      0e34ed43
  12. 10 Dec, 2018 2 commits
  13. 06 Dec, 2018 4 commits
  14. 05 Dec, 2018 4 commits
  15. 04 Dec, 2018 1 commit
  16. 03 Dec, 2018 4 commits
  17. 01 Dec, 2018 2 commits
  18. 22 Nov, 2018 2 commits
  19. 21 Nov, 2018 1 commit
    • Jean-Claude Monnin's avatar
      Fix warning when NDEBUG is defined [-Wunused-variable] · 51ca982a
      Jean-Claude Monnin authored
      Because `isPeek()` is side effect free this should not change anything.
      
      The reason this warning is not shown in the unit tests is because the asserts
      are always evaluated in the unit test:
      
      #define RAPIDJSON_ASSERT(x) (!(x) ? throw AssertException(RAPIDJSON_STRINGIFY(x)) : (void)0u)
      51ca982a