Changeset: 80e40b87da10 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=80e40b87da10 Modified Files: gdk/gdk_bat.c Branch: Jun2020 Log Message:
Now that GDKtracer_log returns void, we need to change the assert definition. diffs (12 lines): diff --git a/gdk/gdk_bat.c b/gdk/gdk_bat.c --- a/gdk/gdk_bat.c +++ b/gdk/gdk_bat.c @@ -2100,7 +2100,7 @@ BATmode(BAT *b, bool transient) #ifdef NDEBUG /* assertions are disabled, turn failing tests into a message */ #undef assert -#define assert(test) ((void) ((test) || TRC_CRITICAL_ENDIF(BAT_, "Assertion `%s' failed\n", #test))) +#define assert(test) ((void) ((test) || (TRC_CRITICAL_ENDIF(BAT_, "Assertion `%s' failed\n", #test), 0))) #endif /* Assert that properties are set correctly. _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
