Force usage of assert() condition when NDEBUG is defined
[lttng-tools.git] / src / common / filter / filter-parser.y
index 74541f75610c4460e57f1c4bc598e7b64fd370e2..d2c726007d1043d59c0ec7fefb1e0e244894a532 100644 (file)
@@ -15,7 +15,6 @@
 #include <unistd.h>
 #include <string.h>
 #include <stdlib.h>
-#include <assert.h>
 #include <inttypes.h>
 #include "common/bytecode/bytecode.h"
 #include "filter-ast.h"
@@ -317,8 +316,8 @@ int filter_parser_ctx_create_from_filter_expression(
        struct filter_parser_ctx *ctx = NULL;
        FILE *fmem = NULL;
 
-       assert(filter_expression);
-       assert(ctxp);
+       LTTNG_ASSERT(filter_expression);
+       LTTNG_ASSERT(ctxp);
 
        /*
         * Casting const to non-const, as the underlying function will use it in
This page took 0.023321 seconds and 4 git commands to generate.