cmake/Tests/RunCMake/try_compile/CxxStandardGNU.cxx

12 lines
275 B
C++
Raw Normal View History

2017-04-14 19:02:05 +02:00
#if __cplusplus != 201103L && \
!(__cplusplus < 201103L && defined(__GXX_EXPERIMENTAL_CXX0X__))
#error "Not GNU C++ 11 mode!"
#endif
#ifndef __STRICT_ANSI__
#error "Not GNU C++ strict ANSI!"
#endif
int main()
{
return 0;
}