diff options
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog | 5 | ||||
-rw-r--r-- | TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl | 3 |
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 |