Add "missing" virtual dtor

Make the dtor of b3DynamicBvhBroadphase virtual, to match that the type
has other virtual methods. This silences a -Wvirtual-dtor warning.
This commit is contained in:
Matthew Woehlke
2016-09-15 12:17:23 -04:00
parent 79d24db60f
commit ef943bdcf0

View File

@@ -160,7 +160,7 @@ struct b3DynamicBvhBroadphase
#endif
/* Methods */
b3DynamicBvhBroadphase(int proxyCapacity, b3OverlappingPairCache* paircache=0);
~b3DynamicBvhBroadphase();
virtual ~b3DynamicBvhBroadphase();
void collide(b3Dispatcher* dispatcher);
void optimize();