BSON: Added test case for the different input/output_adapters

This commit is contained in:
Julian Becker
2018-09-24 23:35:19 +02:00
parent 763705c2a7
commit bce4816275
2 changed files with 66 additions and 2 deletions

View File

@@ -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