Skip to content

Commit

Permalink
Fix default enclosing type for 1-byte bitfield (#363)
Browse files Browse the repository at this point in the history
* Refs #21263. Update submodule

Signed-off-by: Ricardo González Moreno <[email protected]>

* Refs #21263. Update submodule

Signed-off-by: Ricardo González Moreno <[email protected]>

* Refs #21263. Fix with last idl-parser

Signed-off-by: Ricardo González Moreno <[email protected]>

---------

Signed-off-by: Ricardo González Moreno <[email protected]>
  • Loading branch information
richiware authored Jul 3, 2024
1 parent b1f21c3 commit e157e35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public ArrayList<Entry<String, TypeCode>> getTypeCodesToDefine()
{
ArrayList<Entry<String, TypeCode>> typecodes = new ArrayList<Entry<String, TypeCode>>();

for (TypeDeclaration type : m_types.values())
for (TypeDeclaration type : getTypes())
{
if (type.getTypeCode() instanceof MemberedTypeCode && !(type.getTypeCode() instanceof EnumTypeCode))
{
Expand Down

0 comments on commit e157e35

Please sign in to comment.