Modified Files:

simgear/route/waypoint.hxx simgear/route/waypoint.cxx: Use const
	refs where possible.
This commit is contained in:
frohlich 2007-07-08 08:43:15 +00:00
parent 2dfc057135
commit d4a4428e64
2 changed files with 2 additions and 2 deletions

View 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;

View 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();