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.
21 lines
388 B
21 lines
388 B
#ifndef BUILD_DEBUG
|
|
# error BUILD_DEBUG is undefined
|
|
#endif
|
|
#ifndef GLOBAL_DEBUG
|
|
# error GLOBAL_DEBUG is undefined
|
|
#endif
|
|
#ifndef TARGET_DEBUG
|
|
# error TARGET_DEBUG is undefined
|
|
#endif
|
|
|
|
#if GLOBAL_DEBUG != BUILD_DEBUG
|
|
# error GLOBAL_DEBUG does not match BUILD_DEBUG
|
|
#endif
|
|
#if TARGET_DEBUG != BUILD_DEBUG
|
|
# error TARGET_DEBUG does not match BUILD_DEBUG
|
|
#endif
|
|
|
|
void some_symbol()
|
|
{
|
|
}
|