Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 18, 2024
1 parent 467e7d5 commit 2933152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/lib/transport/call_filters.h
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ struct StackData {
std::is_empty<typename FilterType::Call>::value &&
std::is_trivially_constructible<typename FilterType::Call>::value,
size_t>
AddFilterConstructor(FilterType* channel_data) {
AddFilterConstructor(FilterType*) {
const size_t alignment = alignof(typename FilterType::Call);
call_data_alignment = std::max(call_data_alignment, alignment);
return 0;
Expand All @@ -665,7 +665,7 @@ struct StackData {
template <typename FilterType>
absl::enable_if_t<
std::is_trivially_destructible<typename FilterType::Call>::value>
AddFilterDestructor(size_t call_offset) {}
AddFilterDestructor(size_t) {}

template <typename FilterType>
size_t AddFilter(FilterType* filter) {
Expand Down

0 comments on commit 2933152

Please sign in to comment.