Skip to content

Commit ae0f41e

Browse files
committed
- fixed VS2010 x86 issue
1 parent 346c2db commit ae0f41e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Demos/Simulation/SimulationModel.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ namespace PBD
1919
SimulationModel();
2020
virtual ~SimulationModel();
2121

22-
typedef std::vector<Constraint*, Eigen::aligned_allocator<Constraint*> > ConstraintVector;
23-
typedef std::vector<RigidBody*, Eigen::aligned_allocator<RigidBody*> > RigidBodyVector;
24-
typedef std::vector<TriangleModel*, Eigen::aligned_allocator<TriangleModel*> > TriangleModelVector;
25-
typedef std::vector<TetModel*, Eigen::aligned_allocator<TetModel*> > TetModelVector;
22+
typedef std::vector<Constraint*> ConstraintVector;
23+
typedef std::vector<RigidBody*> RigidBodyVector;
24+
typedef std::vector<TriangleModel*> TriangleModelVector;
25+
typedef std::vector<TetModel*> TetModelVector;
2626
typedef std::vector<unsigned int> ConstraintGroup;
2727
typedef std::vector<ConstraintGroup> ConstraintGroupVector;
2828

0 commit comments

Comments
 (0)