Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Otrishko <shishugi@gmail.com>2020-01-26 18:59:51 +0300
committerShelley Vohr <shelley.vohr@gmail.com>2020-02-17 21:18:32 +0300
commit83dd65a4693d9f478f9832238c56b0d17babbe87 (patch)
tree88bd8ff42bfe04a70263b168cecd09af4a733add /src/util.h
parent13c69657037591427f217808780f95db17f0fe50 (diff)
src: fix ignore GCC -Wcast-function-type for older compilers
Fixes: https://github.com/nodejs/node/issues/31517 PR-URL: https://github.com/nodejs/node/pull/31524 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h
index 94db8f79c8f..8e90a5ee74a 100644
--- a/src/util.h
+++ b/src/util.h
@@ -24,12 +24,12 @@
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
-#if defined(__GNUC__) && !defined(__clang__)
+#if (__GNUC__ >= 8) && !defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wcast-function-type"
#endif
#include "v8.h"
-#if defined(__GNUC__) && !defined(__clang__)
+#if (__GNUC__ >= 8) && !defined(__clang__)
#pragma GCC diagnostic pop
#endif