mirror of
https://github.com/nlohmann/json.git
synced 2026-02-22 19:36:26 +00:00
BSON: Added test case for the different input/output_adapters
This commit is contained in:
@@ -102,9 +102,15 @@ class alt_string
|
||||
str_impl.resize(n, c);
|
||||
}
|
||||
|
||||
auto begin() -> std::string::iterator { return str_impl.begin(); }
|
||||
auto begin() -> std::string::iterator
|
||||
{
|
||||
return str_impl.begin();
|
||||
}
|
||||
|
||||
auto end() -> std::string::iterator { return str_impl.end(); }
|
||||
auto end() -> std::string::iterator
|
||||
{
|
||||
return str_impl.end();
|
||||
}
|
||||
|
||||
template <typename op_type>
|
||||
bool operator<(const op_type& op) const
|
||||
|
||||
Reference in New Issue
Block a user