From c1bfd696d46ff68e25391afc11d6a184c182d7d6 Mon Sep 17 00:00:00 2001 From: Alden Torres Date: Sun, 18 Nov 2018 14:15:50 -0500 Subject: [PATCH] removed misleading message --- cmake/Modules/LibtorrentMacros.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/Modules/LibtorrentMacros.cmake b/cmake/Modules/LibtorrentMacros.cmake index 3c66423f8..32d8d7d4c 100644 --- a/cmake/Modules/LibtorrentMacros.cmake +++ b/cmake/Modules/LibtorrentMacros.cmake @@ -81,7 +81,6 @@ function(select_cxx_standard _target _minimal_supported_version) else() _cxx_standard_to_year(std_year ${_std}) if (${std_year} LESS ${minimal_supported_version_year}) - message(SEND_ERROR "Sorry, C++${_std} is not supported by libtorrent with the given Boost version") message(FATAL_ERROR "The minimal supported C++ standard version is C++${_minimal_supported_version}") endif() endif()