2
0
mirror of https://github.com/boostorg/url.git synced 2026-02-01 21:12:10 +00:00

elements are not stream parsers

This commit is contained in:
Vinnie Falco
2021-09-03 17:35:07 -07:00
parent 5860390271
commit b599ffa4af
24 changed files with 115 additions and 371 deletions

View File

@@ -23,13 +23,13 @@ public:
void
run()
{
bad <scheme>("");
bad <scheme>("1");
bad <scheme>(" ");
bad <scheme>(" http");
bad <scheme>("http ");
good<scheme>("http");
good<scheme>("a1steak");
bad_ <scheme>("");
bad_ <scheme>("1");
bad_ <scheme>(" ");
bad_ <scheme>(" http");
bad_ <scheme>("http ");
good_<scheme>("http");
good_<scheme>("a1steak");
}
};