зеркало из https://github.com/electron/electron.git
30 строки
950 B
Diff
30 строки
950 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: deepak1556 <hop2deep@gmail.com>
|
|
Date: Tue, 16 Nov 2021 20:05:57 +0900
|
|
Subject: fix: suppress clang -Wdeprecated-declarations in libuv
|
|
|
|
Should be upstreamed.
|
|
|
|
diff --git a/deps/uv/src/win/util.c b/deps/uv/src/win/util.c
|
|
index a96cb915930a30a49ba55fd7d15ea48f0b471f89..3c15f348bd3a9a42afcf0e4d0182d2d6f3d05cb1 100644
|
|
--- a/deps/uv/src/win/util.c
|
|
+++ b/deps/uv/src/win/util.c
|
|
@@ -1537,10 +1537,17 @@ int uv_os_uname(uv_utsname_t* buffer) {
|
|
#ifdef _MSC_VER
|
|
#pragma warning(suppress : 4996)
|
|
#endif
|
|
+ #ifdef __clang__
|
|
+ #pragma clang diagnostic push
|
|
+ #pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
+ #endif
|
|
if (GetVersionExW(&os_info) == 0) {
|
|
r = uv_translate_sys_error(GetLastError());
|
|
goto error;
|
|
}
|
|
+ #ifdef __clang__
|
|
+ #pragma clang diagnostic pop
|
|
+ #endif
|
|
}
|
|
|
|
/* Populate the version field. */
|