Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: V8: cherry-pick c5ab3e4f0c5a #47736

Commits on Apr 26, 2023

  1. deps: V8: cherry-pick c5ab3e4f0c5a

    Original commit message:
    
        libstdc++: fix incomplete type in v8::internal::is_subtype<T, U>
    
        Using std::convertible with incomplete types is UB. However, till
        GCC 12 it was accepted and std::convertible returned false.
        This fails now for e.g. v8::internal::WasmArray. Use
        std::disjunction and std::conjunction instead which are short-
        circuiting, because std::is_base_of<T, T> is already true.
    
        Bug: chromium:957519
        Change-Id: Ia26643dbdf0fb00d5586c71ae6b18e8d0f3cf96e
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4394663
        Commit-Queue: Stephan Hartmann <stha09@googlemail.com>
        Reviewed-by: Clemens Backes <clemensb@chromium.org>
        Cr-Commit-Position: refs/heads/main@{#86904}
    
    Refs: v8/v8@c5ab3e4
    richardlau committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    0164c09 View commit details
    Browse the repository at this point in the history