get rid of 'using'

This commit is contained in:
Xuchen Han
2019-08-02 15:27:10 -07:00
parent f624b60c19
commit 7f33d8cdb9
9 changed files with 22 additions and 11 deletions

View File

@@ -21,7 +21,8 @@ class btDeformableRigidDynamicsWorld;
class btDeformableBodySolver : public btSoftBodySolver
{
using TVStack = btAlignedObjectArray<btVector3>;
// using TVStack = btAlignedObjectArray<btVector3>;
typedef btAlignedObjectArray<btVector3> TVStack;
protected:
int m_numNodes;
TVStack m_dv;