debug: fully qualify *_equal comparators
This commit is contained in:
parent
8e2c5f1942
commit
b1880e47b3
@ -221,7 +221,7 @@
|
|||||||
#define CHECK_ZERO(A) do { \
|
#define CHECK_ZERO(A) do { \
|
||||||
DEBUG_ONLY( \
|
DEBUG_ONLY( \
|
||||||
const auto __a = (A); \
|
const auto __a = (A); \
|
||||||
_CHECK_META (almost_zero (__a), \
|
_CHECK_META (util::almost_zero (__a), \
|
||||||
{ ; }, \
|
{ ; }, \
|
||||||
{ \
|
{ \
|
||||||
std::ostringstream __debug_nez_os; \
|
std::ostringstream __debug_nez_os; \
|
||||||
@ -237,7 +237,7 @@
|
|||||||
#define CHECK_NEZ(A) do { \
|
#define CHECK_NEZ(A) do { \
|
||||||
DEBUG_ONLY( \
|
DEBUG_ONLY( \
|
||||||
const auto __a = (A); \
|
const auto __a = (A); \
|
||||||
_CHECK_META (!almost_zero (__a), \
|
_CHECK_META (!util::almost_zero (__a), \
|
||||||
{ ; }, \
|
{ ; }, \
|
||||||
{ \
|
{ \
|
||||||
std::ostringstream __debug_nez_os; \
|
std::ostringstream __debug_nez_os; \
|
||||||
|
Loading…
Reference in New Issue
Block a user