8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 14:03:07 +01:00
This commit is contained in:
robocop 2009-01-17 10:58:24 +00:00
parent 5cfec060d5
commit ce678f21f9

View File

@ -927,7 +927,7 @@ void Statement::deallocate(thread_db *tdbb)
}
typedef enum {ttNone, ttWhite, ttComment, ttBrokenComment, ttString, ttParamMark, ttIdent, ttOther} TokenType;
enum TokenType {ttNone, ttWhite, ttComment, ttBrokenComment, ttString, ttParamMark, ttIdent, ttOther};
static TokenType getToken(const char **begin, const char *end)
{