mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
merge.
checkpoint. does not compile.
This commit is contained in:
@ -31,12 +31,9 @@
|
||||
*/
|
||||
|
||||
#define MYSQL_CALLBACK(OBJ, FUNC, PARAMS) \
|
||||
do { \
|
||||
if ((OBJ) && ((OBJ)->FUNC)) \
|
||||
(OBJ)->FUNC PARAMS; \
|
||||
} while (0)
|
||||
(((OBJ) && ((OBJ)->FUNC)) ? (OBJ)->FUNC PARAMS : 0)
|
||||
|
||||
#define MYSQL_CALLBACK_ELSE(OBJ, FUNC, PARAMS, ELSE) \
|
||||
#define MYSQL_CALLBACK_ELSE0(OBJ, FUNC, PARAMS, ELSE) \
|
||||
(((OBJ) && ((OBJ)->FUNC)) ? (OBJ)->FUNC PARAMS : (ELSE))
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user