Commit d122816c authored by jean-pierre charras's avatar jean-pierre charras

Fix forgotten change

parent 067bf851
...@@ -264,7 +264,7 @@ public: ...@@ -264,7 +264,7 @@ public:
* @return ${enum} - the type of token found next. * @return ${enum} - the type of token found next.
* @throw IOError - only if the LINE_READER throws it. * @throw IOError - only if the LINE_READER throws it.
*/ */
${enum} NextTok() throw (IOError) ${enum} NextTok() throw (IO_ERROR)
{ {
return (${enum}) DSNLEXER::NextTok(); return (${enum}) DSNLEXER::NextTok();
} }
...@@ -277,7 +277,7 @@ public: ...@@ -277,7 +277,7 @@ public:
* @return int - the actual token read in. * @return int - the actual token read in.
* @throw IOError, if the next token does not satisfy IsSymbol() * @throw IOError, if the next token does not satisfy IsSymbol()
*/ */
${enum} NeedSYMBOL() throw( IOError ) ${enum} NeedSYMBOL() throw( IO_ERROR )
{ {
return (${enum}) DSNLEXER::NeedSYMBOL(); return (${enum}) DSNLEXER::NeedSYMBOL();
} }
...@@ -290,7 +290,7 @@ public: ...@@ -290,7 +290,7 @@ public:
* @return int - the actual token read in. * @return int - the actual token read in.
* @throw IOError, if the next token does not satisfy the above test * @throw IOError, if the next token does not satisfy the above test
*/ */
${enum} NeedSYMBOLorNUMBER() throw( IOError ) ${enum} NeedSYMBOLorNUMBER() throw( IO_ERROR )
{ {
return (${enum}) DSNLEXER::NeedSYMBOLorNUMBER(); return (${enum}) DSNLEXER::NeedSYMBOLorNUMBER();
} }
......
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