diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-07 13:51:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-07 13:51:23 +0200 |
commit | 2a6f06ae44a80a5ebdc1b6188b11634fbb0e8741 (patch) | |
tree | ec632db851d165defead84dc65ca537e850d64d2 /common/virtual | |
parent | 9c304207722ff9e2794ba25bb496858f089e4a2a (diff) |
Fix to use traditional const style
Diffstat (limited to 'common/virtual')
-rw-r--r-- | common/virtual/test.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/virtual/test.hxx b/common/virtual/test.hxx index 69eaa7e..cf4db0f 100644 --- a/common/virtual/test.hxx +++ b/common/virtual/test.hxx @@ -145,7 +145,7 @@ namespace test3 struct name { name () {} - name (std::string const& f, std::string const& l) + name (const std::string& f, const std::string& l) : first (f), last(l) {} std::string first; |