1. 24 Jun, 2020 1 commit
  2. 23 Jun, 2020 3 commits
  3. 22 Jun, 2020 2 commits
    • chenguoping's avatar
      to allow for ADL in int_to_string() function · aeef5070
      chenguoping authored
      aeef5070
    • Thomas Braun's avatar
      json_pointer::array_index: Use unsigned values for the array index when parsing · ecbb2756
      Thomas Braun authored
      The current code uses std::stoi to convert the input string to an int
      array_index. This limits the maximum addressable array size to ~2GB on
      most platforms.
      
      But all callers immediately convert the result of array_index to
      BasicJsonType::size_type.
      
      So let's parse it as unsigned long long, which allows us to have as
      big arrays as available memory. And also makes the call sites nicer to
      read.
      
      One complication arises on platforms where size_type is smaller than
      unsigned long long. We need to bail out on these if the parsed array
      index does not fit into size_type.
      ecbb2756
  4. 21 Jun, 2020 2 commits
  5. 20 Jun, 2020 4 commits
  6. 19 Jun, 2020 1 commit
  7. 18 Jun, 2020 1 commit
  8. 17 Jun, 2020 6 commits
  9. 16 Jun, 2020 3 commits
  10. 14 Jun, 2020 3 commits
  11. 12 Jun, 2020 1 commit
  12. 10 Jun, 2020 3 commits
  13. 09 Jun, 2020 3 commits
  14. 08 Jun, 2020 1 commit
  15. 07 Jun, 2020 6 commits