aboutsummaryrefslogtreecommitdiff
path: root/odb/odb.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-04-29 15:56:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-29 15:56:24 +0200
commit7666ab6a1d8d1bcf64453ba95af8697455d8106d (patch)
tree3f6978e1e66c122a227746dc51da7ad21fa24cd7 /odb/odb.cxx
parentf041edd254e35b6d7c1b82df5919d573400912e4 (diff)
Use traditional const placement
Diffstat (limited to 'odb/odb.cxx')
-rw-r--r--odb/odb.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/odb.cxx b/odb/odb.cxx
index 662c18d..ff28fbc 100644
--- a/odb/odb.cxx
+++ b/odb/odb.cxx
@@ -737,7 +737,7 @@ main (int argc, char* argv[])
//
os << "template <typename T>" << endl
<< "bool" << endl
- << "has_lt_operator (T const& x, T const& y)" << endl
+ << "has_lt_operator (const T& x, const T& y)" << endl
<< "{" << endl
<< "bool r (x < y);" << endl
<< "return r;" << endl