From 9e7bdabaa4d7f57d1a1016a95b841cf9aaf892a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <gruenich@dune-project.org> Date: Wed, 17 Feb 2016 07:33:58 +0100 Subject: [PATCH] [CMake] Remove spurious character in C++14 test Probably introduced accidentally in commit daa2e9f4. --- cmake/modules/CheckCXXFeatures.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/CheckCXXFeatures.cmake b/cmake/modules/CheckCXXFeatures.cmake index 57cabcd2c..fe159bb42 100644 --- a/cmake/modules/CheckCXXFeatures.cmake +++ b/cmake/modules/CheckCXXFeatures.cmake @@ -60,7 +60,7 @@ string(REPLACE ";" "\;" cxx_14_test int main() { // lambdas with auto parameters are C++14 - so this checks the compiler - auto l = [](auto x) { return x; };a + auto l = [](auto x) { return x; }; // std::make_unique() is a C++14 library feature - this checks whether the // compiler uses a C++14 compliant library. auto v = std::make_unique<int>(l(0)); -- GitLab