1
0
Fork 0

James Turner : a trivial patch to remove a now obsolete default ctor from FGPositioned

This commit is contained in:
fredb 2008-12-04 08:15:36 +00:00
parent 7f2f1e39e3
commit 812485d623
2 changed files with 0 additions and 8 deletions

View 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)),

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