diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-02 22:02:54 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-08 09:05:54 (GMT) |
commit | 8d3467636c4fad32c25390244a62e58e068c33ad (patch) | |
tree | 9c4f9a1cefe548bd38fd72f3bfebdd5e3e97b8ee /Tests/CompileFeatures | |
parent | 0caf08e43ef405a879393cb3a4bae0b6b87e26b6 (diff) | |
download | CMake-8d3467636c4fad32c25390244a62e58e068c33ad.zip CMake-8d3467636c4fad32c25390244a62e58e068c33ad.tar.gz CMake-8d3467636c4fad32c25390244a62e58e068c33ad.tar.bz2 |
Features: Add cxx_strong_enums.
Diffstat (limited to 'Tests/CompileFeatures')
-rw-r--r-- | Tests/CompileFeatures/cxx_strong_enums.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/cxx_strong_enums.cpp b/Tests/CompileFeatures/cxx_strong_enums.cpp new file mode 100644 index 0000000..6262456 --- /dev/null +++ b/Tests/CompileFeatures/cxx_strong_enums.cpp @@ -0,0 +1,7 @@ + +enum class Colors +{ + RedColor, + GreenColor, + BlueColor +}; |