map_config.cpp 274 B

123456789101112131415
  1. #ifdef DEBUG_MODE
  2. #ifndef SPECIAL_MODE
  3. #error Special configuration should be mapped to debug configuration.
  4. #endif
  5. #else
  6. #ifdef SPECIAL_MODE
  7. #error Special configuration should not be enabled if not debug configuration
  8. #endif
  9. #endif
  10. int main(int, char**)
  11. {
  12. return 0;
  13. }