diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-07-01 01:22:22 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-07-07 19:59:48 +0100 |
commit | 88ec5d40dcf5d9f95217b123b48203b2f334c0a1 (patch) | |
tree | 8e737498418bf4d8cb1c64f2db09d7f9a36557d2 /build_msvc/bitcoin_config.h.in | |
parent | 555f9dd5d39b316bf404017401b5aedc23ec6226 (diff) |
build: Increase MS Visual Studio minimum version
Visual Studio 2022 with `/std:c++20` supports designated initializers.
Diffstat (limited to 'build_msvc/bitcoin_config.h.in')
-rw-r--r-- | build_msvc/bitcoin_config.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_msvc/bitcoin_config.h.in b/build_msvc/bitcoin_config.h.in index b37d536947..5f715282eb 100644 --- a/build_msvc/bitcoin_config.h.in +++ b/build_msvc/bitcoin_config.h.in @@ -50,8 +50,8 @@ /* Define this symbol if the consensus lib has been built */ #define HAVE_CONSENSUS_LIB 1 -/* define if the compiler supports basic C++17 syntax */ -#define HAVE_CXX17 1 +/* define if the compiler supports basic C++20 syntax */ +#define HAVE_CXX20 1 /* Define to 1 if you have the declaration of `be16toh', and to 0 if you don't. */ |