summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/genex_test.cpp
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2015-01-06 18:19:44 (GMT)
committerBrad King <brad.king@kitware.com>2015-01-11 16:32:36 (GMT)
commitf73718c9b893e1489f904cf30392742cb456c341 (patch)
tree51dc3c45de92f7c56b4bb71c0de7c96866e7827a /Tests/CompileFeatures/genex_test.cpp
parent64c30bdc48d0a3e1da48fdbfeb200740fa5dac43 (diff)
downloadCMake-f73718c9b893e1489f904cf30392742cb456c341.zip
CMake-f73718c9b893e1489f904cf30392742cb456c341.tar.gz
CMake-f73718c9b893e1489f904cf30392742cb456c341.tar.bz2
Features: Enable writing of MSVC compiler feature header.
Notes: VS2015 and above are the only MSVC versions to support cxx_final, so remove usages from the tests, and instead only test for cxx_override. VS2012 and above to conform to cxx_decltype_incomplete_return_types proposal, but without support for auto return types the dcl.type.simple example in the proposal doesn't compile. VS2013 and above to conform to the updated cxx_contextual_conversions proposal, but VS2010 and above pass the test. Compilers such as MSVC have no explicit flags to enable C++11 mode, it just is always on. So only run the link tests with compilers that require a flag to specify the language version.
Diffstat (limited to 'Tests/CompileFeatures/genex_test.cpp')
-rw-r--r--Tests/CompileFeatures/genex_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CompileFeatures/genex_test.cpp b/Tests/CompileFeatures/genex_test.cpp
index f667cc4..4412569 100644
--- a/Tests/CompileFeatures/genex_test.cpp
+++ b/Tests/CompileFeatures/genex_test.cpp
@@ -10,7 +10,7 @@ struct A
virtual int getA() { return 7; }
};
-struct B final : A
+struct B : A
{
int getA() override { return 42; }
};