Skip to content

Commit

Permalink
Merge pull request #389 from ni/users/ccaltagi/GetUnpackedField_boole…
Browse files Browse the repository at this point in the history
…an_array_support

Add boolean array support to GetUnpackedField.
  • Loading branch information
ccaltagi authored Oct 2, 2024
2 parents dc6bf10 + 7c88456 commit 369dcb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unpacked_fields.cc
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ namespace grpc_labview
case LVMessageMetadataType::MessageValue:
return -1;
case LVMessageMetadataType::BoolValue:
*(uint8_t*)buffer = field->varint();
CopyVarintBitValueField<uint8_t>(isRepeated, 0x05, 8, field, buffer);
break;
case LVMessageMetadataType::EnumValue:
case LVMessageMetadataType::Int32Value:
Expand Down

0 comments on commit 369dcb3

Please sign in to comment.