Commit 777cb2bf by John Kessenich

Fix linux build error from last check in.

parent a7a68a9b
...@@ -377,7 +377,7 @@ protected: ...@@ -377,7 +377,7 @@ protected:
// Scanner used to get source stream characters. // Scanner used to get source stream characters.
// - Escaped newlines are handled here, invisibly to the caller. // - Escaped newlines are handled here, invisibly to the caller.
// - All forms of newline are handled, and turned into just a '\n'. // - All forms of newline are handled, and turned into just a '\n'.
int tStringInput::getch() int getch()
{ {
int ch = input->get(); int ch = input->get();
...@@ -415,7 +415,7 @@ protected: ...@@ -415,7 +415,7 @@ protected:
// handled here, invisibly to the caller, meaning have to undo exactly // handled here, invisibly to the caller, meaning have to undo exactly
// what getch() above does (e.g., don't leave things in the middle of a // what getch() above does (e.g., don't leave things in the middle of a
// sequence of escaped newlines). // sequence of escaped newlines).
void tStringInput::ungetch() void ungetch()
{ {
input->unget(); input->unget();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment