Skip to content

Commit

Permalink
Namespace doesn't need to be followed by semicolon
Browse files Browse the repository at this point in the history
Summary:
Auto-generated with
```
fbgs "}; // namespace" -l | sort | uniq | sed 's/fbsource.//' | xargs -n 50 sed -i 's_}; // namespace_} // namespace_'
```

Reviewed By: dmm-fb

Differential Revision: D51029740

fbshipit-source-id: 177e3f6e6b0ab7e986b1147952cd5e2f59d4b1fc
  • Loading branch information
r-barnes authored and facebook-github-bot committed Nov 6, 2023
1 parent 388156f commit 3cc875f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quic/server/handshake/ServerHandshake.h
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,6 @@ class ServerHandshake : public Handshake {
*/
virtual bool processPendingCryptoEvent() = 0;
virtual void writeNewSessionTicketToCrypto(const AppToken& appToken) = 0;
}; // namespace quic
} // namespace quic

} // namespace quic
2 changes: 1 addition & 1 deletion quic/server/test/QuicServerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2228,7 +2228,7 @@ class QuicServerTest : public Test {
TransportSettings transportSettings_;
MockQuicStatsFactory* transportStatsFactory_;
uint32_t clientHostId_{0}, serverHostId_{0xAABBCC};
}; // namespace test
} // namespace test

TEST_F(QuicServerTest, NetworkTest) {
runTest(std::vector<folly::EventBase*>());
Expand Down

0 comments on commit 3cc875f

Please sign in to comment.