Skip to content

Commit

Permalink
Remove extra semi colon from katran/lib/testing/PcapParser.cpp
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: dmm-fb

Differential Revision: D52969181

fbshipit-source-id: 9de0abf53932fd9b6eecd1a81710919bcfce05a0
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 23, 2024
1 parent c4339fc commit 61aec4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion katran/lib/testing/PcapParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ std::string PcapParser::getPacketFromPcapBase64() {
std::string PcapParser::convertPacketToBase64(
std::unique_ptr<folly::IOBuf> pckt) {
return Base64Helpers::base64Encode(pckt.get());
};
}

std::unique_ptr<folly::IOBuf> PcapParser::getPacketFromBase64(
const std::string& encodedPacket) {
Expand Down

0 comments on commit 61aec4d

Please sign in to comment.