1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

- make sure to define NDEBUG in my_dbug.h, when DBUG_OFF is defined

(to disable assertions)
This commit is contained in:
lenz@mysql.com
2004-06-15 14:37:45 +02:00
parent 9d788778a0
commit 14ace68c98

View File

@@ -16,6 +16,9 @@
#ifndef _dbug_h
#define _dbug_h
#ifdef DBUG_OFF
#define NDEBUG /* for assert.h */
#endif
#include <assert.h>
#ifdef __cplusplus
extern "C" {