eigen/failtest/sparse_ref_3.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
272 B
C++
Raw Permalink Normal View History

2015-02-09 17:24:07 +08:00
#include "../Eigen/Sparse"
using namespace Eigen;
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
void call_ref(Ref<SparseMatrix<float> > a) {}
#else
void call_ref(const Ref<const SparseMatrix<float> > &a) {}
#endif
int main() {
SparseMatrix<float> a(10, 10);
call_ref(a + a);
}