summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/MSVC-CXX.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-11-02 13:42:39 (GMT)
committerBrad King <brad.king@kitware.com>2016-11-02 13:51:48 (GMT)
commit8b6cc2518a8019314af43a32702a09bff318b777 (patch)
treeb662bd6f006143d11874b1ede76b430be13c5da2 /Modules/Compiler/MSVC-CXX.cmake
parent2d23f7b206c908e55999143487548e2d6a92bc79 (diff)
downloadCMake-8b6cc2518a8019314af43a32702a09bff318b777.zip
CMake-8b6cc2518a8019314af43a32702a09bff318b777.tar.gz
CMake-8b6cc2518a8019314af43a32702a09bff318b777.tar.bz2
Features: Centralize per-compiler recording macros
Simplify and de-duplicate per-compiler feature recording macros and convert to a centralized per-language macro.
Diffstat (limited to 'Modules/Compiler/MSVC-CXX.cmake')
-rw-r--r--Modules/Compiler/MSVC-CXX.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Compiler/MSVC-CXX.cmake b/Modules/Compiler/MSVC-CXX.cmake
index 681ee70..82f15bd 100644
--- a/Modules/Compiler/MSVC-CXX.cmake
+++ b/Modules/Compiler/MSVC-CXX.cmake
@@ -6,6 +6,6 @@ endif()
macro(cmake_record_cxx_compile_features)
if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 16.0)
- record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES)
+ _record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES)
endif()
endmacro()