We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3647d commit f33f7c8Copy full SHA for f33f7c8
src/pugixml.cppm
@@ -64,6 +64,9 @@ import std.compat;
64
#if defined(__clang__)
65
# pragma clang diagnostic push
66
# pragma clang diagnostic ignored "-Winclude-angled-in-module-purview"
67
+#elif defined(_MSC_VER)
68
+# pragma warning(push)
69
+# pragma warning(disable:5244)
70
#endif
71
#if !defined(PUGIXML_HEADER_ONLY)
72
extern "C++" {
@@ -74,6 +77,8 @@ extern "C++" {
74
77
75
78
76
79
# pragma clang diagnostic pop
80
81
+# pragma warning(pop)
82
83
84
0 commit comments