diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-03 17:32:06 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-08 09:05:55 (GMT) |
commit | 8149fc909fb2c26235fea8999ea9396d7b45fba7 (patch) | |
tree | a02242d4debeea171612e141056740ea6752ac31 /Tests | |
parent | bd2a025eb0ec26dc32d6eb4c9c3da22f68608b27 (diff) | |
download | CMake-8149fc909fb2c26235fea8999ea9396d7b45fba7.zip CMake-8149fc909fb2c26235fea8999ea9396d7b45fba7.tar.gz CMake-8149fc909fb2c26235fea8999ea9396d7b45fba7.tar.bz2 |
Features: Add cxx_noexcept.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CompileFeatures/cxx_noexcept.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/cxx_noexcept.cpp b/Tests/CompileFeatures/cxx_noexcept.cpp new file mode 100644 index 0000000..a3c05b8 --- /dev/null +++ b/Tests/CompileFeatures/cxx_noexcept.cpp @@ -0,0 +1,5 @@ + +void someFunc() noexcept +{ + +} |