Moved cpp-feature-tests out of source

This commit is contained in:
AdenKoperczak 2024-09-27 12:05:14 -04:00
parent 1b79c37fd2
commit 6953eddea6
2 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,8 @@
#include <chrono>
int main()
{
#if (__cpp_lib_chrono < 201907L)
# error("Old chrono version")
#endif
}