From a29039f23510243dba12a676ef1678753f47fadd Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 7 Feb 2015 13:51:06 +0200 Subject: Fix to use traditional const style --- view/employee.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { } -- cgit v1.1