1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

Everywhere: Remove usages of template keyword with no parameter list

These were made invalid with P1787, and Clang (19) trunk started warning
on them with https://github.com/llvm/llvm-project/pull/80801.
This commit is contained in:
Daniel Bertalan 2024-06-04 22:19:15 +02:00 committed by Tim Flynn
parent 9b5d1382bf
commit 397774d422
Notes: sideshowbarker 2024-07-17 08:59:18 +09:00
6 changed files with 6 additions and 6 deletions

View file

@ -88,7 +88,7 @@ public:
template<typename TUnaryPredicate>
bool remove_all_matching(TUnaryPredicate const& predicate)
{
return m_table.template remove_all_matching([&](auto& entry) {
return m_table.remove_all_matching([&](auto& entry) {
return predicate(entry.key, entry.value);
});
}