]> git.mxchange.org Git - simgear.git/commitdiff
Modified Files:
authorfrohlich <frohlich>
Sun, 8 Jul 2007 08:43:15 +0000 (08:43 +0000)
committerfrohlich <frohlich>
Sun, 8 Jul 2007 08:43:15 +0000 (08:43 +0000)
simgear/route/waypoint.hxx simgear/route/waypoint.cxx: Use const
refs where possible.

simgear/route/waypoint.cxx
simgear/route/waypoint.hxx

index 286fe1cc5f1c708347c4c75bab1879543e0e79d9..b56b25ba51609e929cbe927f4dddc722c144aa2b 100644 (file)
@@ -32,7 +32,7 @@
 
 // Constructor
 SGWayPoint::SGWayPoint( const double lon, const double lat, const double alt,
-                       const modetype m, const string s, const string n ) {
+                       const modetype m, const string& s, const string& n ) {
     target_lon = lon;
     target_lat = lat;
     target_alt = alt;
index 2d995a3d0370b2e43e8006cee10f8fb9aeb36b80..9c93314f3e7fd479a1f1f4c415ba617f9a4e6ab3 100644 (file)
@@ -91,7 +91,7 @@ public:
      */
     SGWayPoint( const double lon = 0.0, const double lat = 0.0,
                const double alt = 0.0, const modetype m = WGS84,
-               const string s = "", const string n = "" );
+               const string& s = "", const string& n = "" );
 
     /** Destructor */
     ~SGWayPoint();