Skip to content

Commit d2dbcf0

Browse files
amykhuangmschneider
authored andcommitted
[Fix] new clang -Wmissing-template-arg-list-after-template-kw warning (#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 #36805 COPYBARA_INTEGRATE_REVIEW=grpc/grpc#36805 from amykhuang:master 6f385be2a0f014d1a27fb32e427938c4ced57f83 PiperOrigin-RevId: 640554705
1 parent 7f1f7c0 commit d2dbcf0

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
@@ -470,8 +470,7 @@ class BasicSeqIter {
470470
}
471471
cur_ = next;
472472
state_.~State();
473-
Construct(&state_,
474-
Traits::template CallSeqFactory(f_, *cur_, std::move(arg)));
473+
Construct(&state_, Traits::CallSeqFactory(f_, *cur_, std::move(arg)));
475474
return PollNonEmpty();
476475
});
477476
}

0 commit comments

Comments
 (0)