Fix inc parsing when appending to end of a token

This commit is contained in:
Max Brunsfeld 2014-09-03 07:09:15 -07:00
parent 77529ace3d
commit ad52bdc448
4 changed files with 41 additions and 26 deletions

View file

@ -31,3 +31,7 @@ SpyReader::SpyReader(string content, size_t chunk_size) :
spy_seek,
nullptr,
}) {}
void SpyReader::clear() {
strings_read.clear();
}