summaryrefslogtreecommitdiff
path: root/cli/inline.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/inline.cxx')
-rw-r--r--cli/inline.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/inline.cxx b/cli/inline.cxx
index 9dc5440..4bc0182 100644
--- a/cli/inline.cxx
+++ b/cli/inline.cxx
@@ -26,7 +26,7 @@ namespace
<< "return this->" << emember (o) << ";"
<< "}";
- if (modifier)
+ if (gen_modifier)
{
os << inl << type << "& " << scope << "::" << endl
<< name << " ()"
@@ -41,7 +41,7 @@ namespace
<< "}";
}
- if (specifier && type != "bool")
+ if (gen_specifier && type != "bool")
{
string spec (especifier (o));
@@ -51,7 +51,7 @@ namespace
<< "return this->" << especifier_member (o) << ";"
<< "}";
- if (modifier)
+ if (gen_modifier)
os << inl << "void " << scope << "::" << endl
<< spec << "(bool x)"
<< "{"