2
0
mirror of https://github.com/boostorg/json.git synced 2026-01-19 04:12:14 +00:00

serializer refactor (API Change):

fix #275

* serialize() replaces to_string()
* serialize.hpp replaces to_string.hpp
* serializer works on all types
* serialize, operator<< work on all types
* reset() takes pointer arguments
* resetting constructor removed
This commit is contained in:
Vinnie Falco
2020-09-07 06:17:25 -07:00
parent 07dcc303b3
commit 591e2dc5a5
30 changed files with 665 additions and 355 deletions

View File

@@ -2697,11 +2697,6 @@ public:
BOOST_TEST( operator> (s1, s2));
BOOST_TEST( operator> (v1, s2));
BOOST_TEST( operator> (c1, s2));
std::stringstream ss;
string s = "Hello, world";
ss << s;
BOOST_TEST(ss.str() == s);
}
void