diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-07 13:51:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-07 13:51:06 +0200 |
commit | a29039f23510243dba12a676ef1678753f47fadd (patch) | |
tree | 9237ac6cf2549ed3996e9edf280e1bc7337b85ba /view | |
parent | 8d10eeb2bb5b744d029ad9841ff65d3f354abdbb (diff) |
Fix to use traditional const style
Diffstat (limited to 'view')
-rw-r--r-- | view/employee.hxx | 2 |
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) { } |