diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-06 01:28:41 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-06 01:35:31 +0100 |
commit | d73d869bc195bf8dbb7525ce12acf2c2fde56084 (patch) | |
tree | 0ca5ed69ffa725889da230fcda75e56bd452562b | |
parent | 8a514050c611b3dd8ba5c21ffe413af369954b30 (diff) |
compat/lqt: use debug assert, not the regular one
-rw-r--r-- | compat/LooseQuadtree-impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/LooseQuadtree-impl.h b/compat/LooseQuadtree-impl.h index 4d37bcd0..ff25f682 100644 --- a/compat/LooseQuadtree-impl.h +++ b/compat/LooseQuadtree-impl.h @@ -3,7 +3,7 @@ #include "LooseQuadtree.h" #include "compat/assert.hpp" #undef assert -#define assert fm_assert +#define assert(...) fm_debug_assert(__VA_ARGS__) #include <array> #include <cstddef> |