workaround to dereferencing a nullptr
parent
e9c7e2cb4f
commit
e0791f4e54
|
@ -98,7 +98,8 @@ struct Record: public internal::CallRecordImplementor<Record, Cols> {
|
||||||
friend struct internal::CallRecordImplementor;
|
friend struct internal::CallRecordImplementor;
|
||||||
};
|
};
|
||||||
|
|
||||||
internal::JacobianMap & NJM= *static_cast<internal::JacobianMap *>(nullptr);
|
internal::JacobianMap* NJM_ptr = static_cast<internal::JacobianMap *>(nullptr);
|
||||||
|
internal::JacobianMap & NJM = *NJM_ptr;
|
||||||
|
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
typedef Eigen::Matrix<double, Eigen::Dynamic, Cols> DynRowMat;
|
typedef Eigen::Matrix<double, Eigen::Dynamic, Cols> DynRowMat;
|
||||||
|
|
Loading…
Reference in New Issue