Removed an unnecessary assert
It prevented the amount string "$1.00 " from being parsed.
This commit is contained in:
parent
8af4451472
commit
f9607a57c1
1 changed files with 0 additions and 1 deletions
|
|
@ -613,7 +613,6 @@ public:
|
||||||
const parse_flags_t& flags = PARSE_DEFAULT) {
|
const parse_flags_t& flags = PARSE_DEFAULT) {
|
||||||
std::istringstream stream(str);
|
std::istringstream stream(str);
|
||||||
bool result = parse(stream, flags);
|
bool result = parse(stream, flags);
|
||||||
assert(stream.eof());
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue