]> git.mxchange.org Git - flightgear.git/commitdiff
James Turner : a trivial patch to remove a now obsolete default ctor from FGPositioned
authorfredb <fredb>
Thu, 4 Dec 2008 08:15:36 +0000 (08:15 +0000)
committerfredb <fredb>
Thu, 4 Dec 2008 08:15:36 +0000 (08:15 +0000)
src/Navaids/positioned.cxx
src/Navaids/positioned.hxx

index a89d28f2902a560a2a54bb15f9ea1e266e49e776..e09f0da2c5c63800769885d415b2ccd65308a27d 100644 (file)
@@ -330,11 +330,6 @@ spatialGetClosest(const SGGeod& aPos, unsigned int aN, double aCutoffNm, const F
 
 ///////////////////////////////////////////////////////////////////////////////
 
-FGPositioned::FGPositioned() :
-  mType(INVALID)
-{
-}
-
 FGPositioned::FGPositioned(Type ty, const std::string& aIdent, double aLat, double aLon, double aElev) :
   mType(ty),
   mPosition(SGGeod::fromDegFt(aLon, aLat, aElev)),
index f6cf3cf372e9c8273efa6901b06529c70c2aabee..3c26835061ef1cc38d19ffa749cd8c59f10881e4 100644 (file)
@@ -132,9 +132,6 @@ protected:
   
   SGGeod mPosition; // can't be const right now
   
-//private: // make private once FGFix and FGRunway are heap-based
-  FGPositioned();
-  
   Type mType;
   std::string mIdent;
 };