Skip to content

Commit

Permalink
removed unused format argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Ward committed Dec 24, 2024
1 parent 3063dd5 commit 5b27775
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,7 @@ private static void generatePrimitiveArrayEncoder(

if (primitiveType.size() == 1)
{
indent(sb, level + 1, "buf.put_%s_at(offset + index, value);\n",
rustPrimitiveType, primitiveType.size());
indent(sb, level + 1, "buf.put_%s_at(offset + index, value);\n", rustPrimitiveType);
}
else
{
Expand Down

0 comments on commit 5b27775

Please sign in to comment.