xml_lpm_fuzzer: Protect assert(...) from NDEBUG

This commit is contained in:
Sebastian Pipping 2025-02-02 00:39:58 +01:00
parent 5551e205d2
commit 2ca8b39167

View file

@ -29,6 +29,10 @@
USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#if defined(NDEBUG)
# undef NDEBUG // because checks below rely on assert(...)
#endif
#include <assert.h>
#include <stdint.h>
#include <vector>