From 921498383d2d8e5eabf75ffcb8b309377a0655ba Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Tue, 5 Nov 2024 09:47:04 +0100 Subject: [PATCH] Specify a version when support for C++17 will be removed --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f91ea2f3..24a7014a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,7 @@ if(NOT CMAKE_CXX_STANDARD MATCHES "17|20") endif() if(CMAKE_CXX_STANDARD EQUAL 17) - message(WARNING "C++17 is deprecated and support for it will be removed in the future. Please use at least C++20.") + message(WARNING "C++17 is deprecated and support for it will be removed in v01-03. Please use at least C++20.") endif() # Prevent CMake falls back to the latest standard the compiler does support