diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-04 12:10:17 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-08 09:05:56 (GMT) |
commit | ff80c3b4201918c2f30241972d3553a99571eed8 (patch) | |
tree | 6f6c6d175a314e0e2ecd6e6a955563852cc865d2 /Tests/CompileFeatures | |
parent | 7605fee593a00e0345a4842241ff1f2a043b7ebf (diff) | |
download | CMake-ff80c3b4201918c2f30241972d3553a99571eed8.zip CMake-ff80c3b4201918c2f30241972d3553a99571eed8.tar.gz CMake-ff80c3b4201918c2f30241972d3553a99571eed8.tar.bz2 |
Features: Add cxx_attributes.
Diffstat (limited to 'Tests/CompileFeatures')
-rw-r--r-- | Tests/CompileFeatures/cxx_attributes.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/cxx_attributes.cpp b/Tests/CompileFeatures/cxx_attributes.cpp new file mode 100644 index 0000000..a3c89ea --- /dev/null +++ b/Tests/CompileFeatures/cxx_attributes.cpp @@ -0,0 +1,2 @@ + +void unusedFunc [[noreturn]] () { throw 1; } |