Skip to content

Commit 3ff2aec

Browse files
danbevTrott
authored andcommitted
src: ignore GCC -Wcast-function-type for v8.h
This commit suggests that cast-function-type warnings be ignored from v8.h. Currently, GCC reports a number of warnings like this: In file included from ../src/util.h:27, from ../src/aliased_buffer.h:7, from ../src/memory_tracker.h:5, from ../src/base_object.h:27, from ../src/async_wrap.h:27, from ../src/req_wrap.h:6, from ../src/req_wrap-inl.h:6, from ../src/connect_wrap.h:6, from ../src/connect_wrap.cc:1: ../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:123:42: required from here ../deps/v8/include/v8.h:10374: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] reinterpret_cast<Callback>(callback), type); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The motivation for doing this that it makes it difficult to spot other warnings that might be important. Since it is v8 that performs this cast I was not able to find a way around it. PR-URL: #31475 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent f2d5173 commit 3ff2aec

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

src/base_object-inl.h

+8
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,15 @@
2727
#include "base_object.h"
2828
#include "env-inl.h"
2929
#include "util.h"
30+
31+
#if defined(__GNUC__) && !defined(__clang__)
32+
#pragma GCC diagnostic push
33+
#pragma GCC diagnostic ignored "-Wcast-function-type"
34+
#endif
3035
#include "v8.h"
36+
#if defined(__GNUC__) && !defined(__clang__)
37+
#pragma GCC diagnostic pop
38+
#endif
3139

3240
namespace node {
3341

src/node.h

+7
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,14 @@
6060
# define SIGKILL 9
6161
#endif
6262

63+
#if defined(__GNUC__) && !defined(__clang__)
64+
#pragma GCC diagnostic push
65+
#pragma GCC diagnostic ignored "-Wcast-function-type"
66+
#endif
6367
#include "v8.h" // NOLINT(build/include_order)
68+
#if defined(__GNUC__) && !defined(__clang__)
69+
#pragma GCC diagnostic pop
70+
#endif
6471
#include "v8-platform.h" // NOLINT(build/include_order)
6572
#include "node_version.h" // NODE_MODULE_VERSION
6673

src/util.h

+7
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,14 @@
2424

2525
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
2626

27+
#if defined(__GNUC__) && !defined(__clang__)
28+
#pragma GCC diagnostic push
29+
#pragma GCC diagnostic ignored "-Wcast-function-type"
30+
#endif
2731
#include "v8.h"
32+
#if defined(__GNUC__) && !defined(__clang__)
33+
#pragma GCC diagnostic pop
34+
#endif
2835

2936
#include <cassert>
3037
#include <climits> // PATH_MAX

0 commit comments

Comments
 (0)