diff options
author | John Hodge <tpg@ucc.asn.au> | 2016-06-04 15:08:50 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2016-06-04 15:08:50 +0800 |
commit | f36518ed2fb6444884f991bcd6c8e0c3acd47beb (patch) | |
tree | 9ac3092f488192aba16e2ce1f4f160b98cd16ec0 /src/parse/parseerror.hpp | |
parent | f92a45d8054cc18a037449ec136bf874ce20fc5a (diff) | |
download | mrust-f36518ed2fb6444884f991bcd6c8e0c3acd47beb.tar.gz |
Compilation fixes (clang and different gcc version)
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 42a89785..b847ccc4 100644 --- a/src/parse/parseerror.hpp +++ b/src/parse/parseerror.hpp @@ -14,7 +14,7 @@ using CompileError::Todo; class BadChar:
public CompileError::Base
{
- char m_char;
+ //char m_char;
public:
BadChar(const TokenStream& lex, char character);
virtual ~BadChar() throw ();
|