From d0943a846912929f70cd012ad9cb3dd4b8955524 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <github@naumov.de>
Date: Fri, 17 Jun 2016 11:36:28 +0000
Subject: [PATCH] [GL] Use const& in Station's ctor.

---
 GeoLib/Station.cpp | 8 ++++----
 GeoLib/Station.h   | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/GeoLib/Station.cpp b/GeoLib/Station.cpp
index 34e0a223836..3f8097fea18 100644
--- a/GeoLib/Station.cpp
+++ b/GeoLib/Station.cpp
@@ -23,13 +23,13 @@
 
 namespace GeoLib
 {
-Station::Station(double x, double y, double z, std::string name) :
-    Point (x,y,z), _name(std::move(name)), _type(Station::StationType::STATION),
+Station::Station(double x, double y, double z, std::string const& name) :
+    Point (x,y,z), _name(name), _type(Station::StationType::STATION),
     _station_value(0.0), _sensor_data(nullptr)
 {}
 
-Station::Station(Point* coords, std::string name) :
-    Point (*coords), _name(std::move(name)), _type(Station::StationType::STATION),
+Station::Station(Point* coords, std::string const& name) :
+    Point (*coords), _name(name), _type(Station::StationType::STATION),
     _station_value(0.0), _sensor_data(nullptr)
 {}
 
diff --git a/GeoLib/Station.h b/GeoLib/Station.h
index 243c9ccea8d..9305b5af59d 100644
--- a/GeoLib/Station.h
+++ b/GeoLib/Station.h
@@ -57,9 +57,9 @@ public:
     Station(double x = 0.0,
             double y = 0.0,
             double z = 0.0,
-            std::string name = "");
+            std::string const& name = "");
 
-    Station(Point* coords, std::string name = "");
+    Station(Point* coords, std::string const& name = "");
 
     /**
      * Constructor copies the source object
-- 
GitLab