aboutsummaryrefslogtreecommitdiff
path: root/common/relationship
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-02-07 13:51:23 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-02-07 13:51:23 +0200
commit2a6f06ae44a80a5ebdc1b6188b11634fbb0e8741 (patch)
treeec632db851d165defead84dc65ca537e850d64d2 /common/relationship
parent9c304207722ff9e2794ba25bb496858f089e4a2a (diff)
Fix to use traditional const style
Diffstat (limited to 'common/relationship')
-rw-r--r--common/relationship/query/test.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/relationship/query/test.hxx b/common/relationship/query/test.hxx
index 7375e2d..1b8bbe8 100644
--- a/common/relationship/query/test.hxx
+++ b/common/relationship/query/test.hxx
@@ -132,7 +132,7 @@ struct employer
#pragma db object pointer(shared_ptr)
struct country
{
- country (const std::string& c, std::string const& n)
+ country (const std::string& c, const std::string& n)
: code (c), name (n)
{
}