Skip to content

Commit f88927b

Browse files
generatedunixname89002005287564meta-codesync[bot]
authored andcommitted
Fix CQS signal modernize-use-override in xplat/thrift/conformance/stresstest
Differential Revision: D90009465 fbshipit-source-id: 1ec632d53f9cef9055c623d5d4d4dd1ecd0f6fc4
1 parent 10a75b5 commit f88927b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

third-party/thrift/src/thrift/conformance/stresstest/client/ClientRunner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class ClientThread : public folly::HHWheelTimer::Callback {
8484
});
8585
}
8686

87-
~ClientThread() {
87+
~ClientThread() override {
8888
// destroy clients in event base thread
8989
thread_->getEventBase()->runInEventBaseThreadAndWait(
9090
[clients = std::move(clients_),

third-party/thrift/src/thrift/conformance/stresstest/client/FizzStopTLSConnector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class FizzStopTLSConnector
2828
: public fizz::client::AsyncFizzClient::HandshakeCallback,
2929
public fizz::AsyncFizzBase::EndOfTLSCallback {
3030
public:
31-
~FizzStopTLSConnector() {
31+
~FizzStopTLSConnector() override {
3232
// Ensure client is destroyed on the correct thread if it still exists
3333
if (client_ && connectEvb_) {
3434
auto clientToDestroy = std::move(client_);

0 commit comments

Comments
 (0)