diff options
author | John Wiegley <johnw@newartisans.com> | 2006-02-15 20:46:07 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:22 -0400 |
commit | 110a23d2f06565204e509b60b0bc28d5ef61a2ae (patch) | |
tree | 32f573f2079cc5198e412afafc9cda45ca0bd601 /textual.cc | |
parent | 27273bb2f46a964ef3262c99e503aab005fe59d1 (diff) | |
download | fork-ledger-110a23d2f06565204e509b60b0bc28d5ef61a2ae.tar.gz fork-ledger-110a23d2f06565204e509b60b0bc28d5ef61a2ae.tar.bz2 fork-ledger-110a23d2f06565204e509b60b0bc28d5ef61a2ae.zip |
Added in.clear() before resetting I/Os streams. Again, thanks to the
list.
Diffstat (limited to 'textual.cc')
-rw-r--r-- | textual.cc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -457,6 +457,7 @@ bool textual_parser_t::test(std::istream& in) const #endif } + in.clear(); in.seekg(0, std::ios::beg); assert(in.good()); return true; |