summaryrefslogtreecommitdiff
path: root/src/include/synext_macro.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/synext_macro.hpp')
-rw-r--r--src/include/synext_macro.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/synext_macro.hpp b/src/include/synext_macro.hpp
index c109b56e..0abaf0fe 100644
--- a/src/include/synext_macro.hpp
+++ b/src/include/synext_macro.hpp
@@ -35,9 +35,9 @@ struct MacroDef
::std::string name;
::std::unique_ptr<ExpandProcMacro> def;
MacroDef(::std::string name, ::std::unique_ptr<ExpandProcMacro> def) :
+ prev(nullptr),
name(::std::move(name)),
- def(::std::move(def)),
- prev(nullptr)
+ def(::std::move(def))
{
Register_Synext_Macro_Static(this);
}