Removed mutable

release/4.3a0
dellaert 2014-12-02 11:40:50 +01:00
parent 6bdba5c17f
commit 6981a1229d
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ struct TypeListGrammar: public classic::grammar<TypeListGrammar<OPEN, CLOSE> > {
template<typename ScannerT>
struct definition {
mutable wrap::Qualified type; ///< temporary for use during parsing
wrap::Qualified type; ///< temporary for use during parsing
TypeGrammar type_g; ///< Individual Type grammars
classic::rule<ScannerT> type_p, typeList_p;