2
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-02-17 18:09:55 +08:00

Replace nullptr by NULL in SparseLU.h to be C++03 compliant.

This commit is contained in:
David Tellenbach 2021-02-09 09:08:06 +01:00
parent 984d010b7b
commit 54589635ad

View File

@ -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;
}