Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 6277bccb19de5ebd68797f369f8ff24fc4417f2e https://github.com/WebKit/WebKit/commit/6277bccb19de5ebd68797f369f8ff24fc4417f2e Author: Frédéric Wang <fw...@igalia.com> Date: 2024-08-15 (Thu, 15 Aug 2024)
Changed paths: M Source/JavaScriptCore/llint/LLIntThunks.cpp Log Message: ----------- fix -Wmissing-template-arg-list-after-template-kw error with latest clang https://bugs.webkit.org/show_bug.cgi?id=278147 rdar://problem/133953876 Reviewed by Yusuke Suzuki. The use of the template keyword to reference template members without a template argument list was deprecated in the C++ standard. e.g. `foo.template bar()` nows needs to be `foo.template bar<>()` See https://commits.webkit.org/280700@main * Source/JavaScriptCore/llint/LLIntThunks.cpp: (JSC::LLInt::untaggedPtr): Add template argument list. Canonical link: https://commits.webkit.org/282303@main To unsubscribe from these emails, change your notification settings at https://github.com/WebKit/WebKit/settings/notifications _______________________________________________ webkit-changes mailing list webkit-changes@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-changes