Skip to content

Commit

Permalink
Remove extra semi colon from fci/structures/infinite_unique_counter/I…
Browse files Browse the repository at this point in the history
…nfiniteUniqueCounterEstimateQuery.cpp

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D51995075

fbshipit-source-id: 74ed64132afa7dd30084f13a4423011dd8f9e79a
  • Loading branch information
r-barnes authored and facebook-github-bot committed Dec 13, 2023
1 parent 79a63d8 commit 1923e80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fizz/crypto/aead/IOBufUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ void XOR(ByteRange first, MutableByteRange second) {
for (size_t i = 0; i < first.size(); ++i) {
second[i] ^= first[i];
}
};
}
} // namespace fizz
2 changes: 1 addition & 1 deletion fizz/experimental/ktls/test/AsyncKTLSRxSocketTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static auto toIOBuf(std::string&& s) -> fizz::Buf {
memcpy(buf->writableTail(), s.data(), s.size());
buf->append(s.size());
return buf;
};
}

static fizz::TrafficKey unhexlifyKey(
std::string_view key,
Expand Down
2 changes: 1 addition & 1 deletion fizz/experimental/ktls/test/AsyncKTLSSocketTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static auto toIOBuf(std::string&& s) -> fizz::Buf {
memcpy(buf->writableTail(), s.data(), s.size());
buf->append(s.size());
return buf;
};
}

static fizz::TrafficKey unhexlifyKey(
std::string_view key,
Expand Down

0 comments on commit 1923e80

Please sign in to comment.