Remove meaningless template keywords.

This will fix -Wmissing-template-arg-list-after-template-kw warnings.
This warning is error-by-default in Clang.

PiperOrigin-RevId: 718133601
This commit is contained in:
jax authors 2025-01-21 17:21:28 -08:00
parent 3aa55992fe
commit 54bb7f5ddb

View File

@ -87,7 +87,7 @@ MATCHER_P2(IsConstantOpWithSplatOrScalarValue, type, value, "") {
}
return true;
})
.template Default([&](auto attr) {
.Default([&](auto attr) {
*result_listener << "Unsupported attribute type: " << debugString(attr);
return false;
});