From dda1d7ee814790c83bc11c574035423fb88e24c8 Mon Sep 17 00:00:00 2001 From: msmit Date: Tue, 28 Sep 2010 08:08:03 +0000 Subject: Tue Sep 28 08:11:50 UTC 2010 Marcel Smit * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl: Resolved error regarding anonymous types. --- TAO/ChangeLog | 5 +++++ TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'TAO') 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 + + * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl: + Resolved error regarding anonymous types. + Mon Sep 27 15:19:09 UTC 2010 Vladimir Zykov * 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 -- cgit v1.2.1