Skip to content

Commit

Permalink
Silence some warnings in the antlr code
Browse files Browse the repository at this point in the history
  • Loading branch information
MKleusberg committed Jul 27, 2014
1 parent 7a5c60b commit e43f43a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/antlr-2.7.7/antlr/BaseAST.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ class ANTLR_API BaseAST : public AST {
}

/// Set the token text for this node
virtual void setText(const ANTLR_USE_NAMESPACE(std)string& txt)
virtual void setText(const ANTLR_USE_NAMESPACE(std)string& /*txt*/)
{
}

/// Set the token type for this node
virtual void setType(int type)
virtual void setType(int /*type*/)
{
}

Expand Down

0 comments on commit e43f43a

Please sign in to comment.