Skip to content

Commit 0a6f52c

Browse files
committed
Refs #20631. Fix idl
Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>
1 parent 7b51101 commit 0a6f52c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

code/DynamicTypesIDLExamples.idl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ struct AliasStruct
110110
//!--IDL_SEQUENCES
111111
struct SequenceStruct
112112
{
113-
sequence<MyBitmask> bitmask_sequence;
113+
sequence<MyBitMask> bitmask_sequence;
114114
sequence<short, 5> short_sequence;
115115
};
116116
//!--
@@ -132,18 +132,18 @@ struct MapStruct
132132

133133
//!--IDL_STRUCT
134134
struct InnerStruct
135-
{
135+
{
136136
@id(0x10) long first;
137137
};
138138

139139
struct ParentStruct
140-
{
140+
{
141141
float first;
142142
long long second;
143143
};
144144

145145
struct ComplexStruct : ParentStruct
146-
{
146+
{
147147
InnerStruct complex_member;
148148
};
149149
//!--
@@ -170,7 +170,7 @@ union ComplexUnion switch (long)
170170

171171
//!--IDL_BITSET
172172
bitset ParentBitSet
173-
{
173+
{
174174
bitfield<3> a;
175175
bitfield<1> b;
176176
bitfield<4>;
@@ -179,7 +179,7 @@ bitset ParentBitSet
179179
};
180180

181181
bitset ChildBitSet : ParentBitSet
182-
{
182+
{
183183
bitfield<1> e;
184184
bitfield<20, unsigned long> f;
185185
};

0 commit comments

Comments
 (0)