summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-10-05 10:41:28 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-10-05 10:41:28 +0300
commit562a765969f015eda26d27091edc3172e5639f9c (patch)
tree5dedfd59a199ed1e8015510d60d2d0057c238841 /cli
parent511d78c0365694c6e1d4c746c812abd61a2d6df3 (diff)
Add missing spaces in generated code
Diffstat (limited to 'cli')
-rw-r--r--cli/cli/inline.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/cli/inline.cxx b/cli/cli/inline.cxx
index 05b83db..35b8caf 100644
--- a/cli/cli/inline.cxx
+++ b/cli/cli/inline.cxx
@@ -34,7 +34,7 @@ namespace
<< "}";
os << inl << "void " << scope << "::" << endl
- << name << "(const " << type << "& x)"
+ << name << " (const " << type << "& x)"
<< "{"
<< "this->" << emember (o) << " = x;"
<< "}";
@@ -52,7 +52,7 @@ namespace
if (gen_modifier)
os << inl << "void " << scope << "::" << endl
- << spec << "(bool x)"
+ << spec << " (bool x)"
<< "{"
<< "this->" << especifier_member (o) << " = x;"
<< "}";