aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/stdvector_overload.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-10-07 21:54:49 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-10-07 21:54:49 +0200
commit16b2001eceac03a3adf981f4bc02b72583433ab1 (patch)
tree03bd24163fa3cf8b16e0d209f792871bb527edc3 /test/stdvector_overload.cpp
parent6512c5e1364d466f1c225039e3a02c83a79ada17 (diff)
Fix gcc 8.1 warning: "maybe use uninitialized"
Diffstat (limited to 'test/stdvector_overload.cpp')
-rw-r--r--test/stdvector_overload.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/stdvector_overload.cpp b/test/stdvector_overload.cpp
index 5c042a64c..da04f8a84 100644
--- a/test/stdvector_overload.cpp
+++ b/test/stdvector_overload.cpp
@@ -31,7 +31,7 @@ void check_stdvector_matrix(const MatrixType& m)
Index rows = m.rows();
Index cols = m.cols();
MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
- std::vector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
+ std::vector<MatrixType> v(10, MatrixType::Zero(rows,cols)), w(20, y);
v[5] = x;
w[6] = v[5];
VERIFY_IS_APPROX(w[6], v[5]);
@@ -100,8 +100,8 @@ template<typename QuaternionType>
void check_stdvector_quaternion(const QuaternionType&)
{
typedef typename QuaternionType::Coefficients Coefficients;
- QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
- std::vector<QuaternionType> v(10), w(20, y);
+ QuaternionType x(Coefficients::Random()), y(Coefficients::Random()), qi=QuaternionType::Identity();
+ std::vector<QuaternionType> v(10,qi), w(20, y);
v[5] = x;
w[6] = v[5];
VERIFY_IS_APPROX(w[6], v[5]);