Skip to content

Commit

Permalink
Refs #19451.- Fix fixed_string
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <[email protected]>
  • Loading branch information
richiware committed Mar 12, 2024
1 parent 429ab9c commit 84fba19
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,11 @@ m_$member.name$.
$if(member.annotationExternal)$
~external();
$elseif(!member.typecode.isAliasType && (member.typecode.isStringType || member.typecode.isWStringType))$
$if(member.typecode.isBounded && member.typecode.isStringType)$
~fixed_string();
$else$
~basic_string();
$endif$
$elseif(!member.typecode.isAliasType && member.typecode.isSequenceType)$
~vector();
$elseif(!member.typecode.isAliasType && member.typecode.isArrayType)$
Expand Down

0 comments on commit 84fba19

Please sign in to comment.