diff options
Diffstat (limited to 'src/parse/parseerror.hpp')
-rw-r--r-- | src/parse/parseerror.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/parseerror.hpp b/src/parse/parseerror.hpp index 1888a105..751af585 100644 --- a/src/parse/parseerror.hpp +++ b/src/parse/parseerror.hpp @@ -15,7 +15,7 @@ class BadChar: {
char m_char;
public:
- BadChar(char character);
+ BadChar(const TokenStream& lex, char character);
virtual ~BadChar() throw ();
};
|