diff options
author | msmit <msmit@remedy.nl> | 2010-09-28 08:08:03 +0000 |
---|---|---|
committer | msmit <msmit@remedy.nl> | 2010-09-28 08:08:03 +0000 |
commit | dda1d7ee814790c83bc11c574035423fb88e24c8 (patch) | |
tree | c070ebd268a42bd8a464eccb01738720a179a15d /TAO/orbsvcs/tests | |
parent | 136e4d4aff2cc18bcc858f463ce5c02bf8c98942 (diff) | |
download | ATCD-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/orbsvcs/tests')
-rw-r--r-- | TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl | 3 |
1 files changed, 2 insertions, 1 deletions
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 |