Files
cxx-ring-buffer/detect/cxxstd.cpp
2020-04-22 14:43:09 +02:00

6 lines
90 B
C++

#if __cplusplus < CXX_STANDARD
#error "c++ standard not new enough"
#endif
int main() {}