diff --git a/wxdata/source/cpp-feature-tests/chrono_feature_test.cpp b/wxdata/source/cpp-feature-tests/chrono_feature_test.cpp new file mode 100644 index 00000000..c23acffb --- /dev/null +++ b/wxdata/source/cpp-feature-tests/chrono_feature_test.cpp @@ -0,0 +1,8 @@ +#include + +int main() +{ +#if (__cpp_lib_chrono < 201907L) +# error("Old chrono version") +#endif +}