Skip to content

Commit 54742e7

Browse files
committed
Clang-format to fix cpplint warning
1 parent cf98842 commit 54742e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/binary_format.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ namespace protobuf_mutator {
1919
using protobuf::Message;
2020

2121
bool ParseBinaryMessage(const uint8_t* data, size_t size, Message* output) {
22-
return ParseBinaryMessage({reinterpret_cast<const char*>(data), size}, output);
22+
return ParseBinaryMessage({reinterpret_cast<const char*>(data), size},
23+
output);
2324
}
2425

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

0 commit comments

Comments
 (0)