mirror of
https://github.com/boostorg/safe_numerics.git
synced 2026-02-22 15:42:30 +00:00
fixes operator precedence error
This commit is contained in:
@@ -402,7 +402,7 @@ constexpr bool operator!=(
|
||||
const interval<T> & t,
|
||||
const interval<U> & u
|
||||
){
|
||||
return ! t == u;
|
||||
return ! (t == u);
|
||||
}
|
||||
|
||||
template<typename T, typename U>
|
||||
|
||||
Reference in New Issue
Block a user