Skip to content

Commit

Permalink
Fix Enum plain and bounded getters (#126) (#128)
Browse files Browse the repository at this point in the history
(cherry picked from commit 7acf712)

Co-authored-by: Pablo Garrido <pablogs9@gmail.com>
  • Loading branch information
mergify[bot] and pablogs9 authored Apr 3, 2024
1 parent 51a6c79 commit e4e9860
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/com/eprosima/idl/parser/typecode/EnumTypeCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,16 @@ public String getSize()
return "4";
}

@Override
public boolean isIsBounded()
{
return true;
}

@Override
public boolean isIsPlain()
{
return true;
}

}

0 comments on commit e4e9860

Please sign in to comment.