From: Braden M. <br...@us...> - 2006-11-03 09:31:50
|
Update of /cvsroot/openvrml/openvrml/lib/antlr/antlr In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30652/lib/antlr/antlr Modified Files: BaseAST.hpp CharScanner.hpp Parser.hpp Log Message: Quell warnings from libantlr. Index: Parser.hpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/lib/antlr/antlr/Parser.hpp,v retrieving revision 1.1.1.3 retrieving revision 1.2 diff -C2 -d -r1.1.1.3 -r1.2 *** Parser.hpp 3 Nov 2006 05:28:19 -0000 1.1.1.3 --- Parser.hpp 3 Nov 2006 09:31:14 -0000 1.2 *************** *** 240,244 **** * customize the behaviour. */ ! virtual void recover(const RecognitionException& ex, const BitSet& tokenSet) { consume(); --- 240,244 ---- * customize the behaviour. */ ! virtual void recover(const RecognitionException& /* ex */, const BitSet& tokenSet) { consume(); Index: CharScanner.hpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/lib/antlr/antlr/CharScanner.hpp,v retrieving revision 1.1.1.3 retrieving revision 1.2 diff -C2 -d -r1.1.1.3 -r1.2 *** CharScanner.hpp 3 Nov 2006 05:28:19 -0000 1.1.1.3 --- CharScanner.hpp 3 Nov 2006 09:31:14 -0000 1.2 *************** *** 125,129 **** * customize the behaviour. */ ! virtual void recover(const RecognitionException& ex, const BitSet& tokenSet) { consume(); --- 125,129 ---- * customize the behaviour. */ ! virtual void recover(const RecognitionException& /* ex */, const BitSet& tokenSet) { consume(); Index: BaseAST.hpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/lib/antlr/antlr/BaseAST.hpp,v retrieving revision 1.1.1.3 retrieving revision 1.2 diff -C2 -d -r1.1.1.3 -r1.2 *** BaseAST.hpp 3 Nov 2006 05:28:19 -0000 1.1.1.3 --- BaseAST.hpp 3 Nov 2006 09:31:14 -0000 1.2 *************** *** 145,154 **** /// Set the token text for this node ! virtual void setText(const ANTLR_USE_NAMESPACE(std)string& txt) { } /// Set the token type for this node ! virtual void setType(int type) { } --- 145,154 ---- /// Set the token text for this node ! virtual void setText(const ANTLR_USE_NAMESPACE(std)string& /* txt */) { } /// Set the token type for this node ! virtual void setType(int /* type */) { } |