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.

31 lines
520 B

template <long l>
struct Outputter;
#if DEFAULT_CXX17
#if __cplusplus <= 201402L
Outputter<__cplusplus> o;
#endif
#elif DEFAULT_CXX14
#if __cplusplus != 201402L
Outputter<__cplusplus> o;
#endif
#elif DEFAULT_CXX11
#if __cplusplus != 201103L
Outputter<__cplusplus> o;
#endif
#else
#if !DEFAULT_CXX98
#error Buildsystem error
#endif
#if __cplusplus != 199711L && __cplusplus != 1 && \
!defined(__GXX_EXPERIMENTAL_CXX0X__)
Outputter<__cplusplus> o;
#endif
#endif
int main()
{
return 0;
}