aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/sparse_extra.cpp
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-08-30 20:10:11 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-08-30 20:10:11 +0200
commitff4e835d6b974ff70bdf12288e58bc073eefe4fb (patch)
tree6f836600b4d25961b34812fff1534c3d117d82c8 /unsupported/test/sparse_extra.cpp
parent023ed6b9a83b89bdba7c4b689bc9e69acd1af79f (diff)
"sparse_product.cpp" must be included before "sparse_basic.cpp", otherwise EIGEN_SPARSE_CREATE_TEMPORARY_PLUGIN has no effect
Diffstat (limited to 'unsupported/test/sparse_extra.cpp')
-rw-r--r--unsupported/test/sparse_extra.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/test/sparse_extra.cpp b/unsupported/test/sparse_extra.cpp
index 4ac53a9a7..51ba83b13 100644
--- a/unsupported/test/sparse_extra.cpp
+++ b/unsupported/test/sparse_extra.cpp
@@ -10,8 +10,8 @@
// import basic and product tests for deprecated DynamicSparseMatrix
#define EIGEN_NO_DEPRECATED_WARNING
-#include "sparse_basic.cpp"
#include "sparse_product.cpp"
+#include "sparse_basic.cpp"
#include <Eigen/SparseExtra>
template<typename SetterType,typename DenseType, typename Scalar, int Options>