SoUI 0.5版本占坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
607 B

3 years ago
# /*
# * or<EFBFBD><EFBFBD>
# *
# * YDTRIGGER_COMMON_BOOL_OR(true, flase) -> true
# *
# * By actboy168
# *
# */
#
#ifndef INCLUDE_YDTRIGGER_COMMON_BOOL_OR_H
#define INCLUDE_YDTRIGGER_COMMON_BOOL_OR_H
#
# define YDTRIGGER_COMMON_BOOL_OR(x, y) YDTRIGGER_COMMON_BOOL_OR_I(x, y)
# define YDTRIGGER_COMMON_BOOL_OR_I(x, y) YDTRIGGER_COMMON_BOOL_OR_CHECK_## x ## _ ## y
#
# define YDTRIGGER_COMMON_BOOL_OR_CHECK_true_true true
# define YDTRIGGER_COMMON_BOOL_OR_CHECK_true_false true
# define YDTRIGGER_COMMON_BOOL_OR_CHECK_false_true true
# define YDTRIGGER_COMMON_BOOL_OR_CHECK_false_false false
#
#endif