CxxStandardGNU.cxx 275 B

1234567891011
  1. #if __cplusplus != 201103L && \
  2. !(__cplusplus < 201103L && defined(__GXX_EXPERIMENTAL_CXX0X__))
  3. #error "Not GNU C++ 11 mode!"
  4. #endif
  5. #ifndef __STRICT_ANSI__
  6. #error "Not GNU C++ strict ANSI!"
  7. #endif
  8. int main()
  9. {
  10. return 0;
  11. }