From 133eb2af69069ecbb6863d215921dbea2af5d6e0 Mon Sep 17 00:00:00 2001 From: Alexander van Gessel Date: Tue, 14 Nov 2017 17:32:22 +0100 Subject: [PATCH] Don't concatenate int arguments --- src/formula/function.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/formula/function.hpp b/src/formula/function.hpp index c5ce6a20a78..31c27d82f27 100644 --- a/src/formula/function.hpp +++ b/src/formula/function.hpp @@ -29,7 +29,7 @@ namespace wfl { \ public: \ explicit name##_function(const args_list& args) \ - : function_expression(#name, args, ##min_args, ##max_args) \ + : function_expression(#name, args, min_args, max_args) \ { \ } \ \