blob: ac59a6b66af1ca766592fe47b4f3de968d0703a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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()
{
}
|