xtd 0.2.0
Loading...
Searching...
No Matches
check_cpp_version.hpp
Go to the documentation of this file.
1
3#pragma once
4
6#if defined(_MSC_VER)
7# if _MSVC_LANG < 202002L
8# error "xtd requires C++20 or later. Use /std:c++20 with MSVC."
9# endif
10#else
11# if __cplusplus < 202002L
12# error "xtd requires C++20 or later. Use -std=c++20 with your compiler."
13# endif
14#endif