Skip to content

Commit

Permalink
Merge branch 'chan3+1' into chan4
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 30, 2024
2 parents 7544f53 + e28bcdf commit 1c5a2ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/lib/surface/channel_init.cc
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ ChannelInit::CreateStack(grpc_channel_stack_type type,
public:
explicit Control(std::vector<ChannelFilter> filters, uint8_t* p)
: filters_(std::move(filters)), p_(p) {}
~Control() {
~Control() override {
for (const auto& filter : filters_) {
filter.vtable->destroy(p_ + filter.offset);
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/lib/transport/call_filters.h
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ class CallFilters {
// pointers: it's expected that some other object will track that ownership.
class Stack : public RefCounted<Stack> {
public:
~Stack();
~Stack() override;

private:
friend class CallFilters;
Expand Down

0 comments on commit 1c5a2ee

Please sign in to comment.