Fix compile-error by adding "defined" to interval_def.h
This commit is contained in:
parent
6bbe592e2a
commit
1c9e5226d8
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ interval<T> & interval<T>::operator*=(interval<T> const & o) {
|
|||
using std::swap;
|
||||
interval<T> const & i1 = *this;
|
||||
interval<T> const & i2 = o;
|
||||
#if LEAN_DEBUG || LEAN_TRACE
|
||||
#if defined(LEAN_DEBUG) || defined(LEAN_TRACE)
|
||||
bool i1_contains_zero = i1.contains_zero();
|
||||
bool i2_contains_zero = i2.contains_zero();
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue