summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-02 22:02:54 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-08 09:05:54 (GMT)
commit8d3467636c4fad32c25390244a62e58e068c33ad (patch)
tree9c4f9a1cefe548bd38fd72f3bfebdd5e3e97b8ee /Tests/CompileFeatures
parent0caf08e43ef405a879393cb3a4bae0b6b87e26b6 (diff)
downloadCMake-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.cpp7
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
+};