summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2010-09-28 08:08:03 +0000
committermsmit <msmit@remedy.nl>2010-09-28 08:08:03 +0000
commitdda1d7ee814790c83bc11c574035423fb88e24c8 (patch)
treec070ebd268a42bd8a464eccb01738720a179a15d /TAO
parent136e4d4aff2cc18bcc858f463ce5c02bf8c98942 (diff)
downloadATCD-dda1d7ee814790c83bc11c574035423fb88e24c8.tar.gz
Tue Sep 28 08:11:50 UTC 2010 Marcel Smit <msmit@remedy.nl>
* orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl: Resolved error regarding anonymous types.
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl3
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 15ba32ba0e5..9a7ecb11ded 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Tue Sep 28 08:11:50 UTC 2010 Marcel Smit <msmit@remedy.nl>
+
+ * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl:
+ Resolved error regarding anonymous types.
+
Mon Sep 27 15:19:09 UTC 2010 Vladimir Zykov <vladimir.zykov@prismtech.com>
* orbsvcs/orbsvcs/Notify/Random_File.cpp:
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl b/TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl
index d4637db8784..2704eabe9bf 100644
--- a/TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl
+++ b/TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl
@@ -2,9 +2,10 @@
#ifndef __IFR_NESTING_ARRAY_TEST_DEFINED
#define __IFR_NESTING_ARRAY_TEST_DEFINED
+typedef short ShortArray_1[1];
struct MyStruct
{
- short innerArray[1]; // Must NOT be [2] to show up the problem.
+ ShortArray_1 innerArray; // Must NOT be [2] to show up the problem.
};
typedef MyStruct arrayOfStruct[2]; // Must be arrayOfStruct[2] to pass client.cpp test