Skip to content

Commit

Permalink
fixed unused argument warning in read()
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Feb 15, 2024
1 parent befd9d9 commit c781e85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/extensions/cpp/freemarker/Union.cpp.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ void ${name}::read(<#rt>
<#if isPackable && usedInPackedArray>

void ${name}::read(<#rt>
${name}::ZserioPackingContext&<#if uses_packing_context(fieldList)> context</#if><#rt>
${name}::ZserioPackingContext&<#if fieldList?has_content> context</#if><#rt>
, ::zserio::BitStreamReader&<#if fieldList?has_content> in</#if><#rt>
<#if parameterArgs(true)?has_content>, ${parameterArgs(true)}</#if><#rt>
, const allocator_type&<#if read_needs_allocator(compoundConstructorsData.fieldList)> allocator</#if>)
Expand Down

0 comments on commit c781e85

Please sign in to comment.