Features: Add infrastructure for C++ 17 language standard

Issue: #16468
This commit is contained in:
Brad King
2016-11-30 15:25:01 -05:00
parent 684e4d205d
commit ae1a6815b6
13 changed files with 55 additions and 13 deletions
+5 -1
View File
@@ -2,7 +2,11 @@
template <long l>
struct Outputter;
#if DEFAULT_CXX14
#if DEFAULT_CXX17
#if __cplusplus <= 201402L
Outputter<__cplusplus> o;
#endif
#elif DEFAULT_CXX14
#if __cplusplus != 201402L
Outputter<__cplusplus> o;
#endif