mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-07 18:27:40 +08:00
Fix a warning
This commit is contained in:
parent
aa6b1aebf3
commit
412c049ba4
@ -16,7 +16,7 @@
|
||||
using namespace std;
|
||||
|
||||
template<typename T> EIGEN_DONT_INLINE
|
||||
void kill_extra_precision(T& x) { eigen_assert(&x != 0); }
|
||||
void kill_extra_precision(T& x) { eigen_assert((void*)(&x) != (void*)0); }
|
||||
|
||||
|
||||
template<typename BoxType> void alignedbox(const BoxType& _box)
|
||||
|
Loading…
Reference in New Issue
Block a user