1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-18 00:02:21 +08:00

Features: Add support for C++14 features.

Record the features implemented by GNU 4.9 and Clang 3.4.
This commit is contained in:
Stephen Kelly
2014-05-06 00:21:14 +02:00
parent 3ea9bde845
commit dd043c3f21
23 changed files with 294 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
[[deprecated]]
int foo()
{
return 0;
}
int someFunc()
{
return foo();
}