1. 28 Feb, 2017 4 commits
    • Niels Lohmann's avatar
      💄 cleanup · d69242c6
      Niels Lohmann authored
      - Added comments for the serializer class.
      - Added test case for resizing of the indentation string.
      - Using std::none_of to check if “.0” needs to be added to
      floating-point number.
      d69242c6
    • Niels Lohmann's avatar
      💄 fixed a warning · 059f21aa
      Niels Lohmann authored
      snprintf returns an int, but we later assign it a difference_type which
      is usually a long.
      059f21aa
    • Niels Lohmann's avatar
      micro-optimization of dump() · 224f9907
      Niels Lohmann authored
      A lot of small changes to avoid memory allocations:
      
      - The locale is only queried once rather than with every number
      serialization.
      - The indentation string is recycled between different calls.
      - The string escape function avoids a copy if no escaping is necessary.
      - The string escape and the space function use a complete switch case
      instead of cascaded ifs.
      
      Cachegrind measures some 15% performance improvement.
      224f9907
    • Niels Lohmann's avatar
      🐛 fixed a logical error · fc48b8ac
      Niels Lohmann authored
      Treated the size of the range as the number of thousand separators.
      This logical error yielded a negative value for written_bytes and
      eventually an infinite loop, as written_bytes was converted to an
      unsigned value.
      fc48b8ac
  2. 27 Feb, 2017 5 commits
  3. 26 Feb, 2017 6 commits
  4. 25 Feb, 2017 3 commits
  5. 22 Feb, 2017 5 commits
  6. 21 Feb, 2017 1 commit
  7. 20 Feb, 2017 8 commits
  8. 19 Feb, 2017 7 commits
  9. 18 Feb, 2017 1 commit