move constructor for abstract class in protected

This commit is contained in:
nicolaichuk
2017-03-23 14:14:14 +03:00
parent 9360f1dca2
commit 74b1044a05
6 changed files with 18 additions and 4 deletions

View File

@@ -41,6 +41,10 @@ struct btBroadphaseRayCallback : public btBroadphaseAabbCallback
btScalar m_lambda_max;
virtual ~btBroadphaseRayCallback() {}
protected:
btBroadphaseRayCallback() {}
};
#include "LinearMath/btVector3.h"