Fix order of initializers in constructor
This commit is contained in:
parent
5a1e0d92f4
commit
185ede0159
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue