Added skipping of newlines in AsciiStreamOperator.h

This commit is contained in:
Robert Osfield
2010-06-28 09:52:18 +00:00
parent e0d8e0a5c7
commit 42a2f2dcf9

View File

@@ -237,7 +237,7 @@ public:
_in->get( ch ); checkStream();
// skip white space
while ( ch==' ' )
while ( ch==' ' || (ch=='\n') || (ch=='\r'))
{
_in->get( ch ); checkStream();
}