Skip to content
Snippets Groups Projects
Commit 9e7bdaba authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[CMake] Remove spurious character in C++14 test

Probably introduced accidentally in commit daa2e9f4.
parent 0b825996
No related branches found
No related tags found
1 merge request!46[CMake] Rewrite C++ standard detection
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment