summaryrefslogtreecommitdiff
path: root/src/parse/parseerror.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@ucc.asn.au>2016-06-04 15:08:50 +0800
committerJohn Hodge <tpg@ucc.asn.au>2016-06-04 15:08:50 +0800
commitf36518ed2fb6444884f991bcd6c8e0c3acd47beb (patch)
tree9ac3092f488192aba16e2ce1f4f160b98cd16ec0 /src/parse/parseerror.hpp
parentf92a45d8054cc18a037449ec136bf874ce20fc5a (diff)
downloadmrust-f36518ed2fb6444884f991bcd6c8e0c3acd47beb.tar.gz
Compilation fixes (clang and different gcc version)
Diffstat (limited to 'src/parse/parseerror.hpp')
-rw-r--r--src/parse/parseerror.hpp2
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 ();