summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/GNU-CXX.cmake
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-01-12 20:43:48 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-01-15 21:13:21 (GMT)
commita60027a642f887179513496ef61552db44829652 (patch)
tree2eb8b49e97e74b7b1f78490a85d59fbca6a0304c /Modules/Compiler/GNU-CXX.cmake
parent06ff525492b32cd3182c185c908c526379766912 (diff)
downloadCMake-a60027a642f887179513496ef61552db44829652.zip
CMake-a60027a642f887179513496ef61552db44829652.tar.gz
CMake-a60027a642f887179513496ef61552db44829652.tar.bz2
Features: Ensure appropriate return value from feature test macros.
GNU-CXX already has complex logic and sets the _result to 0 before tests which may set it to something else. Change the other modules to be consistent with that.
Diffstat (limited to 'Modules/Compiler/GNU-CXX.cmake')
-rw-r--r--Modules/Compiler/GNU-CXX.cmake2
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/Compiler/GNU-CXX.cmake b/Modules/Compiler/GNU-CXX.cmake
index 4a26963..6ade85a 100644
--- a/Modules/Compiler/GNU-CXX.cmake
+++ b/Modules/Compiler/GNU-CXX.cmake
@@ -49,7 +49,5 @@ macro(cmake_record_cxx_compile_features)
if (_result EQUAL 0)
_get_gcc_features(${CMAKE_CXX98_STANDARD_COMPILE_OPTION} CMAKE_CXX98_COMPILE_FEATURES)
endif()
- else()
- set(_result 0)
endif()
endmacro()