aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseLU/SparseLU.h
diff options
context:
space:
mode:
authorGravatar David Tellenbach <david.tellenbach@me.com>2021-02-09 09:08:06 +0100
committerGravatar David Tellenbach <david.tellenbach@me.com>2021-02-09 09:08:06 +0100
commit54589635ad31104bed56abeefd88742370ed1b23 (patch)
treeb6797cf7301171f37d2264791934d76ec6c78a19 /Eigen/src/SparseLU/SparseLU.h
parent984d010b7bcb6a03f0319e79b8a768587be85422 (diff)
Replace nullptr by NULL in SparseLU.h to be C++03 compliant.
Diffstat (limited to 'Eigen/src/SparseLU/SparseLU.h')
-rw-r--r--Eigen/src/SparseLU/SparseLU.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SparseLU/SparseLU.h b/Eigen/src/SparseLU/SparseLU.h
index 62c80b82d..0c8d8939b 100644
--- a/Eigen/src/SparseLU/SparseLU.h
+++ b/Eigen/src/SparseLU/SparseLU.h
@@ -35,7 +35,7 @@ public:
MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime
};
- SparseLUTransposeView() : m_sparseLU(nullptr) {}
+ SparseLUTransposeView() : m_sparseLU(NULL) {}
SparseLUTransposeView(const SparseLUTransposeView& view) {
this->m_sparseLU = view.m_sparseLU;
}