From f0beeba354e12d42463366c997c8fc8bab8d99d9 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 10 Aug 2016 16:42:21 +0200 Subject: [PATCH] Fix missing names for user-defined functions refs #12393 --- lib/config/expression.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/expression.hpp b/lib/config/expression.hpp index 7db4b11a2..226b1b90a 100644 --- a/lib/config/expression.hpp +++ b/lib/config/expression.hpp @@ -792,7 +792,7 @@ class I2_CONFIG_API FunctionExpression : public DebuggableExpression public: FunctionExpression(const String& name, const std::vector& args, std::map *closedVars, Expression *expression, const DebugInfo& debugInfo = DebugInfo()) - : DebuggableExpression(debugInfo), m_Args(args), m_ClosedVars(closedVars), m_Expression(expression) + : DebuggableExpression(debugInfo), m_Args(args), m_Name(name), m_ClosedVars(closedVars), m_Expression(expression) { } protected: