summaryrefslogtreecommitdiff
path: root/cli/inline.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-18 15:15:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-18 15:15:05 +0200
commit64ed039a66d357ca731d50313e811ba69f5873c9 (patch)
tree72378e348aed9467d688a2550da58c8a0829b5d0 /cli/inline.cxx
parentb1b740bc9ab2188d03d1cc414b4d374df5b85036 (diff)
Use consistent const placement
Diffstat (limited to 'cli/inline.cxx')
-rw-r--r--cli/inline.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/inline.cxx b/cli/inline.cxx
index 86c0ddb..23a87ff 100644
--- a/cli/inline.cxx
+++ b/cli/inline.cxx
@@ -20,7 +20,7 @@ namespace
string type (o.type ().name ());
string scope (escape (o.scope ().name ()));
- os << inl << type << " const& " << scope << "::" << endl
+ os << inl << "const " << type << "& " << scope << "::" << endl
<< name << " () const"
<< "{"
<< "return " << emember (o) << ";"