Skip to content

Commit

Permalink
use of RYML_DEBUG_BREAK is now opt-in via RYML_DBG
Browse files Browse the repository at this point in the history
re #362
  • Loading branch information
biojppm committed Mar 19, 2024
1 parent 3eac21f commit 2a134e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c4/yml/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#endif


#if defined(NDEBUG) || defined(C4_NO_DEBUG_BREAK)
#if defined(NDEBUG) || defined(C4_NO_DEBUG_BREAK) || (!defined(RYML_DBG))
# define RYML_DEBUG_BREAK()
#else
# define RYML_DEBUG_BREAK() \
Expand Down

0 comments on commit 2a134e1

Please sign in to comment.