Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Jun 19, 2024
1 parent 747a419 commit 2eae8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/extensions/cpp/runtime/src/zserio/TypeInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@ const IBasicTypeInfo<ALLOC>& FixedSizeBuiltinTypeInfo<ALLOC>::getFixedSignedBitF
{"int:63"_sv, SchemaType::FIXED_SIGNED_BITFIELD, CppType::INT64, 63},
{"int:64"_sv, SchemaType::FIXED_SIGNED_BITFIELD, CppType::INT64, 64}}};

return bitFieldTypeInfoArray[static_cast<size_t>(bitSize - 1)];
return bitFieldTypeInfoArray[bitSize - 1U];
}

template <typename ALLOC>
Expand Down

0 comments on commit 2eae8d8

Please sign in to comment.