We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe6ebe commit 59e2330Copy full SHA for 59e2330
Modules/socketmodule.h
@@ -18,6 +18,10 @@
18
*/
19
#ifdef AF_BTH
20
# include <ws2bth.h>
21
+# ifdef __clang__
22
+# pragma clang diagnostic push
23
+# pragma clang diagnostic ignored "-Wpragma-pack"
24
+# endif
25
# include <pshpack1.h>
26
27
/*
@@ -51,7 +55,10 @@ struct SOCKADDR_BTH_REDEF {
51
55
52
56
};
53
57
# include <poppack.h>
54
-#endif
58
59
+# pragma clang diagnostic pop
60
61
+#endif /* AF_BTH */
62
63
/* Windows 'supports' CMSG_LEN, but does not follow the POSIX standard
64
* interface at all, so there is no point including the code that
0 commit comments