Skip to content

Commit

Permalink
remove duplicate HEAVY_ASSERT definition
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgottesbueren committed Sep 16, 2024
1 parent 14ba091 commit bea38e1
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions mt-kahypar/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,6 @@
#define MT_KAHYPAR_ATTRIBUTE_ALWAYS_INLINE
#endif

#define HEAVY_ASSERT0(cond) \
!(enable_heavy_assert) ? (void)0 : [&]() { ASSERT(cond); }()
#define HEAVY_ASSERT1(cond, msg) \
!(enable_heavy_assert) ? (void)0 : [&]() { ASSERT(cond, msg); }()

#ifdef KAHYPAR_ENABLE_HEAVY_PREPROCESSING_ASSERTIONS
#define HEAVY_PREPROCESSING_ASSERT_1(cond) ASSERT(cond)
#define HEAVY_PREPROCESSING_ASSERT_2(cond, msg) ASSERT(cond, msg)
Expand Down

0 comments on commit bea38e1

Please sign in to comment.