[Fix] new clang -Wmissing-template-arg-list-after-template-kw warning#36805
Closed
amykhuang wants to merge 3 commits intogrpc:masterfrom
Closed
[Fix] new clang -Wmissing-template-arg-list-after-template-kw warning#36805amykhuang wants to merge 3 commits intogrpc:masterfrom
amykhuang wants to merge 3 commits intogrpc:masterfrom
Conversation
ctiller
approved these changes
Jun 4, 2024
eugeneo
approved these changes
Jun 4, 2024
Contributor
Author
|
The patch appears to need a release-notes label, could that be added? |
Contributor
|
@amykhuang added. |
Contributor
Author
|
edited change to remove the template keyword, as I don't think the previous thing was working |
7 tasks
paulosjca
pushed a commit
to paulosjca/grpc
that referenced
this pull request
Nov 25, 2024
…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
mschneider
pushed a commit
to Bonasa-Tech/grpc
that referenced
this pull request
Apr 26, 2025
… (#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
vaidas-shopify
pushed a commit
to vaidas-shopify/grpc
that referenced
this pull request
May 9, 2025
…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
pngcui
pushed a commit
to openfde/studio_external_grpc-grpc
that referenced
this pull request
Dec 2, 2025
… (#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 Test: presubmit Bug: b/379133546 (cherry picked from commit e55f69c) Change-Id: I1f2f08d951c903dafafb78d5626389475c9b8898
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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.