aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qtvector.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-01-23 16:31:03 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-01-23 16:31:03 +0000
commit9849931500ebbc17296e7598dc923b6f73f01bc2 (patch)
tree379fb0351a571cc79ad06afa554688b9ce757a0d /test/qtvector.cpp
parente7c48fac9b0fed8bf262e44feccb63671362c845 (diff)
eventually it turns out that our current
EIGEN_WORK_AROUND_QT_BUG_CALLING_WRONG_OPERATOR_NEW_FIXED_IN_QT_4_5 is the right way to go for allowing placement new on a class having overloaded operator new. Qt 4.5 won't add the :: prefix. (I still do not understand how you can distinghish a placement new from an overloaded operator new taking an allocator as argument...)
Diffstat (limited to 'test/qtvector.cpp')
-rw-r--r--test/qtvector.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/qtvector.cpp b/test/qtvector.cpp
index a04002c36..79bcba675 100644
--- a/test/qtvector.cpp
+++ b/test/qtvector.cpp
@@ -37,6 +37,10 @@ void check_qtvector_matrix(const MatrixType& m)
int cols = m.cols();
MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
+ for(int i = 0; i < 20; i++)
+ {
+ VERIFY_IS_APPROX(w[i], y);
+ }
v[5] = x;
w[6] = v[5];
VERIFY_IS_APPROX(w[6], v[5]);
@@ -50,7 +54,6 @@ void check_qtvector_matrix(const MatrixType& m)
v[20] = x;
VERIFY_IS_APPROX(v[20], x);
v.fill(y,22);
- //v.resize(22);
VERIFY_IS_APPROX(v[21], y);
v.push_back(x);
VERIFY_IS_APPROX(v[22], x);
@@ -86,7 +89,6 @@ void check_qtvector_transform(const TransformType&)
v[20] = x;
VERIFY_IS_APPROX(v[20], x);
v.fill(y,22);
- //v.resize(22);
VERIFY_IS_APPROX(v[21], y);
v.push_back(x);
VERIFY_IS_APPROX(v[22], x);
@@ -122,7 +124,6 @@ void check_qtvector_quaternion(const QuaternionType&)
v[20] = x;
VERIFY_IS_APPROX(v[20], x);
v.fill(y,22);
- //v.resize(22);
VERIFY_IS_APPROX(v[21], y);
v.push_back(x);
VERIFY_IS_APPROX(v[22], x);