use 'using' rather than 'typedef'

This commit is contained in:
Andrew Meadows 2017-04-28 10:18:15 -07:00
parent 5cf233db3a
commit 32c367b644

View file

@ -170,7 +170,7 @@ protected:
bool _hasInternalKinematicChanges { false };
};
typedef QSet<ObjectMotionState*> SetOfMotionStates;
typedef QVector<ObjectMotionState*> VectorOfMotionStates;
using SetOfMotionStates = QSet<ObjectMotionState*>;
using VectorOfMotionStates = QVector<ObjectMotionState*>;
#endif // hifi_ObjectMotionState_h