mirror of
https://github.com/boostorg/build.git
synced 2026-01-26 06:22:26 +00:00
9 lines
104 B
C++
9 lines
104 B
C++
|
|
#if SELECT == 1
|
|
void z1() {}
|
|
#elif SELECT == 2
|
|
void z2() {}
|
|
#else
|
|
#error Invlid value of SELECT
|
|
#endif
|