Skip to content

Commit 7b72b42

Browse files
amykhuangpaulosjca
authored andcommitted
[Fix] new clang -Wmissing-template-arg-list-after-template-kw warning (grpc#36805)
Clang now requires a template argument list after the use of the template keyword. Edit this instance to remove the template keyword since there are no template arguments. See llvm/llvm-project#80801. Closes grpc#36805 COPYBARA_INTEGRATE_REVIEW=grpc#36805 from amykhuang:master 6f385be PiperOrigin-RevId: 640554705
1 parent e6172ae commit 7b72b42

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/core/lib/promise/detail/basic_seq.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,7 @@ class BasicSeqIter {
9999
}
100100
cur_ = next;
101101
state_.~State();
102-
Construct(&state_,
103-
Traits::template CallSeqFactory(f_, *cur_, std::move(arg)));
102+
Construct(&state_, Traits::CallSeqFactory(f_, *cur_, std::move(arg)));
104103
return PollNonEmpty();
105104
});
106105
}

0 commit comments

Comments
 (0)