Removed an unnecessary assert

It prevented the amount string "$1.00 " from being parsed.
This commit is contained in:
John Wiegley 2009-02-19 15:14:22 -04:00
parent 8af4451472
commit f9607a57c1

View file

@ -613,7 +613,6 @@ public:
const parse_flags_t& flags = PARSE_DEFAULT) {
std::istringstream stream(str);
bool result = parse(stream, flags);
assert(stream.eof());
return result;
}