Skip to content

Commit

Permalink
fix: semicolon omitted
Browse files Browse the repository at this point in the history
  • Loading branch information
mgarbade committed Sep 26, 2022
1 parent 8d18c30 commit 6def10c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediapipe_api/framework/formats/float_vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extern "C" {
MP_CAPI(MpReturnCode) mp__MakeFloatVectorPacket__PA_i(const float* value, int size, mediapipe::Packet** packet_out);
MP_CAPI(MpReturnCode) mp__MakeFloatVectorPacket_At__PA_i_Rt(const float* value, int size, mediapipe::Timestamp* timestamp, mediapipe::Packet** packet_out);
MP_CAPI(MpReturnCode) mp_Packet__GetFloatVector(mediapipe::Packet* packet, const float** value_out);
MP_CAPI(MpReturnCode) mp_Packet__GetFloatVector(mediapipe::Packet* packet, const float** value_out, int* size_out)
MP_CAPI(MpReturnCode) mp_Packet__GetFloatVector(mediapipe::Packet* packet, const float** value_out, int* size_out);
MP_CAPI(MpReturnCode) mp_Packet__ValidateAsFloatVector(mediapipe::Packet* packet, absl::Status** status_out);

} // extern "C"
Expand Down

0 comments on commit 6def10c

Please sign in to comment.