fix bugs caused by default copy constructors being called. valgrind,

you saved my life.
This commit is contained in:
Benoit Jacob
2007-09-26 14:06:32 +00:00
parent a2dd9dd6f9
commit 8a024825d2
4 changed files with 18 additions and 20 deletions

View File

@@ -54,8 +54,8 @@ void EigenTest::testVectorOps()
vectorOps(Vector2i());
vectorOps(Vector3d());
vectorOps(Vector4cf());
/*vectorOps(VectorXf(1));
vectorOps(VectorXf(1));
vectorOps(VectorXi(2));
vectorOps(VectorXd(3));
vectorOps(VectorXcf(4));*/
vectorOps(VectorXcf(4));
}