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

basic_parser work

This commit is contained in:
Vinnie Falco
2019-10-14 12:06:27 -07:00
parent b96ae06c5e
commit 0c232111c6
19 changed files with 969 additions and 358 deletions

View File

@@ -33,10 +33,10 @@ public:
s.emplace_front("2");
BEAST_EXPECT(s.size() == 2);
BEAST_EXPECT(s[0] == "2");
s.pop_front();
s.pop();
BEAST_EXPECT(s.size() == 1);
BEAST_EXPECT(s[0] == "1");
s.pop_front();
s.pop();
BEAST_EXPECT(s.empty());
}