From 35a15f0f35c2e33163ea5c96853dae8d3e4cb230 Mon Sep 17 00:00:00 2001 From: Olivier Parcollet Date: Tue, 28 Jan 2014 20:59:05 +0100 Subject: [PATCH] Remove default c++14 flags on clang 3.4 ... - a flag left by mistake after checking portability on C++1y... --- cmake/FindCompilerCheck.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindCompilerCheck.cmake b/cmake/FindCompilerCheck.cmake index bdc9daba..7b0af8ba 100644 --- a/cmake/FindCompilerCheck.cmake +++ b/cmake/FindCompilerCheck.cmake @@ -47,7 +47,7 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") # does not always work ... To be fixed when clang 3.4 officially released and on OS X. if(NOT compiler_version VERSION_LESS "3.4") - set (compiler_is_c14 ON) + #set (compiler_is_c14 ON) endif() elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel")