From 22102c717db29cc2a2c2869ff80f3e4389704d89 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 19 Jul 2023 18:50:29 +1000 Subject: [PATCH] fixed build with asserts enabled --- canard.h | 1 - 1 file changed, 1 deletion(-) diff --git a/canard.h b/canard.h index 7cd913c..b93aad6 100644 --- a/canard.h +++ b/canard.h @@ -69,7 +69,6 @@ extern "C" { /// By default this macro resolves to the standard assert(). The user can redefine this if necessary. #ifndef CANARD_ASSERT #ifdef CANARD_ENABLE_ASSERTS - #error assertsenabled # define CANARD_ASSERT(x) assert(x) #else # define CANARD_ASSERT(x)