fix some warning, need virtual destructor
This commit is contained in:
@@ -55,7 +55,7 @@ extern int gRemovePairs;
|
|||||||
extern int gAddedPairs;
|
extern int gAddedPairs;
|
||||||
extern int gFindPairs;
|
extern int gFindPairs;
|
||||||
|
|
||||||
#define BT_NULL_PAIR 0xffffffff
|
const int BT_NULL_PAIR=0xffffffff;
|
||||||
|
|
||||||
class btOverlappingPairCache
|
class btOverlappingPairCache
|
||||||
{
|
{
|
||||||
@@ -63,11 +63,10 @@ class btOverlappingPairCache
|
|||||||
btOverlapFilterCallback* m_overlapFilterCallback;
|
btOverlapFilterCallback* m_overlapFilterCallback;
|
||||||
bool m_blockedForChanges;
|
bool m_blockedForChanges;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
btOverlappingPairCache();
|
btOverlappingPairCache();
|
||||||
~btOverlappingPairCache();
|
virtual ~btOverlappingPairCache();
|
||||||
|
|
||||||
|
|
||||||
void removeOverlappingPairsContainingProxy(btBroadphaseProxy* proxy,btDispatcher* dispatcher);
|
void removeOverlappingPairsContainingProxy(btBroadphaseProxy* proxy,btDispatcher* dispatcher);
|
||||||
|
|||||||
Reference in New Issue
Block a user