From d122816c9e5c5262f138b6c9bf9632abc568f11a Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 9 Nov 2010 18:39:03 +0100 Subject: [PATCH] Fix forgotten change --- CMakeModules/TokenList2DsnLexer.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeModules/TokenList2DsnLexer.cmake b/CMakeModules/TokenList2DsnLexer.cmake index 0c310f9d0a..04a51664a5 100644 --- a/CMakeModules/TokenList2DsnLexer.cmake +++ b/CMakeModules/TokenList2DsnLexer.cmake @@ -264,7 +264,7 @@ public: * @return ${enum} - the type of token found next. * @throw IOError - only if the LINE_READER throws it. */ - ${enum} NextTok() throw (IOError) + ${enum} NextTok() throw (IO_ERROR) { return (${enum}) DSNLEXER::NextTok(); } @@ -277,7 +277,7 @@ public: * @return int - the actual token read in. * @throw IOError, if the next token does not satisfy IsSymbol() */ - ${enum} NeedSYMBOL() throw( IOError ) + ${enum} NeedSYMBOL() throw( IO_ERROR ) { return (${enum}) DSNLEXER::NeedSYMBOL(); } @@ -290,7 +290,7 @@ public: * @return int - the actual token read in. * @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(); }