You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
275 B
12 lines
275 B
8 years ago
|
#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;
|
||
|
}
|