mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
8 lines
106 B
C++
8 lines
106 B
C++
#include <chrono>
|
|
|
|
int main()
|
|
{
|
|
#if (__cpp_lib_chrono < 201907L)
|
|
# error("Old chrono version")
|
|
#endif
|
|
}
|