summaryrefslogtreecommitdiff
path: root/cli/header.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/header.cxx
parentb1b740bc9ab2188d03d1cc414b4d374df5b85036 (diff)
Use consistent const placement
Diffstat (limited to 'cli/header.cxx')
-rw-r--r--cli/header.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/header.cxx b/cli/header.cxx
index 8033b7f..9662d3e 100644
--- a/cli/header.cxx
+++ b/cli/header.cxx
@@ -19,7 +19,7 @@ namespace
string name (ename (o));
string type (o.type ().name ());
- os << type << " const&" << endl
+ os << "const " << type << "&" << endl
<< name << " () const;"
<< endl;
}