Preprocessor: fixed gcc -Wreorder warning

This commit is contained in:
Daniel Marjamäki 2015-07-26 13:48:01 +02:00
parent 2342b604b0
commit 7f1af06df0
1 changed files with 1 additions and 1 deletions

View File

@ -2583,7 +2583,7 @@ public:
* e.g. "A(x) foo(x);"
*/
PreprocessorMacro(const std::string &macro, const Settings* settings)
: _macro(macro), tokenlist(settings) {
: tokenlist(settings), _macro(macro) {
// Tokenize the macro to make it easier to handle
std::istringstream istr(macro);