test reserve()

This commit is contained in:
zimoch
2011-07-20 08:31:10 +00:00
parent e62553eca6
commit 5a5b42cb67

View File

@ -48,6 +48,7 @@ int main () {
assert (haystack.find(needle) == 0);
haystack.clear();
assert (haystack.find(needle) == 0);
haystack.reserve(10000);
return 0;
}
EOF