From: Tim Moore Date: Mon, 24 Aug 2009 15:58:27 +0000 (+0200) Subject: Fix order of initializers in constructor X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=185ede01597d481107eb85382b1e5b320a7c1121;p=flightgear.git Fix order of initializers in constructor --- diff --git a/src/FDM/groundcache.cxx b/src/FDM/groundcache.cxx index 6a27268cf..ad56fc90f 100644 --- a/src/FDM/groundcache.cxx +++ b/src/FDM/groundcache.cxx @@ -540,9 +540,9 @@ FGGroundCache::get_body(double t, SGMatrixd& bodyToWorld, SGVec3d& linearVel, class FGGroundCache::CatapultFinder : public BVHVisitor { public: CatapultFinder(const SGSphered& sphere, const double& t) : + _haveLineSegment(false), _sphere(sphere), - _time(t), - _haveLineSegment(false) + _time(t) { } virtual void apply(BVHGroup& leaf)