aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-02-07 13:51:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-02-07 13:51:06 +0200
commita29039f23510243dba12a676ef1678753f47fadd (patch)
tree9237ac6cf2549ed3996e9edf280e1bc7337b85ba
parent8d10eeb2bb5b744d029ad9841ff65d3f354abdbb (diff)
Fix to use traditional const style
-rw-r--r--view/employee.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/employee.hxx b/view/employee.hxx
index 4e1b745..d73f9f2 100644
--- a/view/employee.hxx
+++ b/view/employee.hxx
@@ -21,7 +21,7 @@ using std::tr1::shared_ptr;
class country
{
public:
- country (const std::string& code, std::string const& name)
+ country (const std::string& code, const std::string& name)
: code_ (code), name_ (name)
{
}