Skip to content

Commit

Permalink
Clang-format to fix cpplint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybuka committed Jul 29, 2021
1 parent cf98842 commit 54742e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/binary_format.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ namespace protobuf_mutator {
using protobuf::Message;

bool ParseBinaryMessage(const uint8_t* data, size_t size, Message* output) {
return ParseBinaryMessage({reinterpret_cast<const char*>(data), size}, output);
return ParseBinaryMessage({reinterpret_cast<const char*>(data), size},
output);
}

bool ParseBinaryMessage(const std::string& data, protobuf::Message* output) {
Expand Down

0 comments on commit 54742e7

Please sign in to comment.