From 7f1af06df0821e61c6c9cbc14f759828cc21083a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 26 Jul 2015 13:48:01 +0200 Subject: [PATCH] Preprocessor: fixed gcc -Wreorder warning --- lib/preprocessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/preprocessor.cpp b/lib/preprocessor.cpp index c968ed579..f6d26cd7e 100644 --- a/lib/preprocessor.cpp +++ b/lib/preprocessor.cpp @@ -2583,7 +2583,7 @@ public: * e.g. "A(x) foo(x);" */ PreprocessorMacro(const std::string ¯o, const Settings* settings) - : _macro(macro), tokenlist(settings) { + : tokenlist(settings), _macro(macro) { // Tokenize the macro to make it easier to handle std::istringstream istr(macro);