Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 4adb95ac02378b7e298f1da271779af0df956d59
      
https://github.com/WebKit/WebKit/commit/4adb95ac02378b7e298f1da271779af0df956d59
  Author: Ross Kirsling <rkirsl...@gmail.com>
  Date:   2023-10-23 (Mon, 23 Oct 2023)

  Changed paths:
    M Source/JavaScriptCore/runtime/SideDataRepository.h

  Log Message:
  -----------
  Fix PlayStation build following 269639@main
https://bugs.webkit.org/show_bug.cgi?id=263517

Unreviewed build fix.

std::derived_from is a C++20 feature that's nearly the same as the C++11 
feature std::is_base_of_v;
since it shouldn't make a difference for this particular case, let's just make 
use of the latter.

* Source/JavaScriptCore/runtime/SideDataRepository.h:
(JSC::SideDataRepository::ensure):
Use std::is_base_of_v<Base, Derived> instead of std::derived_from<Derived, 
Base>.

Canonical link: https://commits.webkit.org/269645@main


_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to