summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2013-05-20 18:40:26 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2013-05-20 18:40:26 +0000
commit2d22dd2dbd81bd87444c355be4fffd94d885e9d8 (patch)
tree1dc570f9db77f1cc64578dbab5d6e6692a6dcc40
parent22683126a750940b3fbc249a2ea051177625686c (diff)
downloadATCD-2d22dd2dbd81bd87444c355be4fffd94d885e9d8.tar.gz
Mon May 20 18:40:20 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Compiler_Features_16_Test.cpp: Added also a forward declared enum
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/tests/Compiler_Features_16_Test.cpp3
2 files changed, 8 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index b5870b22ccb..f8aa184b79b 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Mon May 20 18:40:20 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/Compiler_Features_16_Test.cpp:
+ Added also a forward declared enum
+
Fri May 17 13:48:34 UTC 2013 Adam Mitz <mitza@ociweb.com>
* bin/fuzz.pl:
diff --git a/ACE/tests/Compiler_Features_16_Test.cpp b/ACE/tests/Compiler_Features_16_Test.cpp
index 9a5b09a8171..d9692702f3a 100644
--- a/ACE/tests/Compiler_Features_16_Test.cpp
+++ b/ACE/tests/Compiler_Features_16_Test.cpp
@@ -16,6 +16,9 @@
static constexpr uint32_t bound = std::numeric_limits<uint32_t>::max();
namespace CORBA {
+ // First forward declare TCKind, this is legal with C++11
+ enum class TCKind : uint32_t;
+
enum class TCKind : uint32_t
{
tk_null,