Skip to content

Commit

Permalink
Removing comment about AllocatorType per review request
Browse files Browse the repository at this point in the history
  • Loading branch information
gatopeich committed Jul 9, 2020
1 parent 0eb7b0a commit f62b462
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/nlohmann/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,8 @@ class basic_json
using object_t = ObjectType<StringType,
basic_json,
object_comparator_t,
// Note: this forces object_t::value_type to match std::map's
AllocatorType<std::pair<const StringType, basic_json>>>;
AllocatorType<std::pair<const StringType,
basic_json>>>;

/*!
@brief a type for an array
Expand Down
4 changes: 2 additions & 2 deletions single_include/nlohmann/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16363,8 +16363,8 @@ class basic_json
using object_t = ObjectType<StringType,
basic_json,
object_comparator_t,
// Note: this forces object_t::value_type to match std::map's
AllocatorType<std::pair<const StringType, basic_json>>>;
AllocatorType<std::pair<const StringType,
basic_json>>>;

/*!
@brief a type for an array
Expand Down

0 comments on commit f62b462

Please sign in to comment.