Skip to content

Commit b47b7b1

Browse files
Siming Lifacebook-github-bot
Siming Li
authored andcommitted
change HQDownstreamSession destructor from private to protected
Summary: - Per https://fburl.com/code/lb8pgvwb, to use DelayedDestruction, the destructor can be either private or protected - HQDownstreamSession destructor is private, which prevents users from subclassing it. - Let's change it to "protected" Reviewed By: lnicco Differential Revision: D71357167 fbshipit-source-id: aeeb97c6a80dedd6345db6c03bfe2e4c882a28eb
1 parent 32ac46e commit b47b7b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxygen/lib/http/session/HQDownstreamSession.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class HQDownstreamSession : public HQSession {
8484
folly::Optional<HTTPHeaders> getExtraHeaders(
8585
const HTTPMessage& haeders, quic::StreamId streamId) override;
8686

87-
private:
87+
protected:
8888
~HQDownstreamSession() override {
8989
CHECK_EQ(getNumStreams(), 0);
9090
}

0 commit comments

Comments
 (0)