From 185ede01597d481107eb85382b1e5b320a7c1121 Mon Sep 17 00:00:00 2001 From: Tim Moore Date: Mon, 24 Aug 2009 17:58:27 +0200 Subject: [PATCH] Fix order of initializers in constructor --- src/FDM/groundcache.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)