Skip to content

Commit

Permalink
Fix sequence of alias of primitives inside modules (#415)
Browse files Browse the repository at this point in the history
* Refs #21978. Regression test

Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>

* Refs #21978. Fix

Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>

* Refs #21978. Update submodule

Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>

---------

Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>
  • Loading branch information
richiware authored Nov 5, 2024
1 parent bbf86e3 commit 84a9fe8
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 @@ -144,7 +144,7 @@ $definition_list$

//{ Anonymous collections generator name
sequence_name(sequence) ::= <%
$if(sequence.contentTypeCode.primitive && !sequence.contentTypeCode.isEnumType)$
$if(sequence.contentTypeCode.primitive && !sequence.contentTypeCode.isEnumType && !sequence.contentTypeCode.isAliasType)$
anonymous_sequence_$sequence.contentTypeCode.cppTypenameForTypeId$_$if(sequence.unbound)$unbounded$else$$sequence.evaluatedMaxsize$$endif$
$elseif (sequence.contentTypeCode.isStringType)$
anonymous_sequence_$string_name(string=sequence.contentTypeCode)$_$if(sequence.unbound)$unbounded$else$$sequence.evaluatedMaxsize$$endif$
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/dds-types-test

0 comments on commit 84a9fe8

Please sign in to comment.