[webkit-changes] [WebKit/WebKit] 6277bc: fix -Wmissing-template-arg-list-after-template-kw ...

Frédéric Wang noreply at github.com
Thu Aug 15 12:53:24 PDT 2024


  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 6277bccb19de5ebd68797f369f8ff24fc4417f2e
      https://github.com/WebKit/WebKit/commit/6277bccb19de5ebd68797f369f8ff24fc4417f2e
  Author: Frédéric Wang <fwang at 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


More information about the webkit-changes mailing list