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

src: ignore GCC -Wcast-function-type for v8.h #32679

Closed
wants to merge 1 commit into from

Commits on Apr 6, 2020

  1. src: ignore GCC -Wcast-function-type for v8.h

    Currently, the following warnings are emitted during compilation:
    In file included from ../src/string_bytes.h:29,
                     from ../src/string_bytes.cc:22:
    ../deps/v8/include/v8.h:
    In instantiation of ‘void v8::PersistentBase<T>::SetWeak(
        P*,typename v8::WeakCallbackInfo<P>::Callback, v8::WeakCallbackType)
    [with P = node::BaseObject;
    T = v8::Object;
    typename v8::WeakCallbackInfo<P>::Callback =
        void (*)(const v8::WeakCallbackInfo<node::BaseObject>&)]’:
    ../src/base_object-inl.h:135:42:   required from here
    ../deps/v8/include/v8.h:10732:16: warning:
    cast between incompatible function types from
    ‘v8::WeakCallbackInfo<node::BaseObject>::Callback’ {aka
    ‘void (*)(const v8::WeakCallbackInfo<node::BaseObject>&)’} to
    ‘Callback’ {aka ‘void (*)(const v8::WeakCallbackInfo<void>&)’}
    [-Wcast-function-type]
    10732 |                reinterpret_cast<Callback>(callback), type);
          |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    And the same from test/cctest/test_aliased_buffer.cc
    
    We have an open pull request against v8 for this:
    https://chromium-review.googlesource.com/c/v8/v8/+/2080361
    danbev committed Apr 6, 2020
    Copy the full SHA
    c6b8fa9 View commit details
    Browse the repository at this point in the history