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 aa07dfa commit a932a51Copy full SHA for a932a51
ggml/src/ggml-aarch64.c
@@ -16,6 +16,8 @@
16
17
#if defined(__GNUC__)
18
#pragma GCC diagnostic ignored "-Woverlength-strings"
19
+#elif defined(_MSC_VER)
20
+#pragma warning(disable: 4244 4267) // possible loss of data
21
#endif
22
23
#define UNUSED GGML_UNUSED
ggml/src/ggml.c
@@ -56,6 +56,9 @@ int ggml_sve_cnt_b = 0;
56
// disable POSIX deprecation warnings
57
// these functions are never going away, anyway
58
#pragma warning(disable: 4996)
59
+
60
+// unreachable code because of multiple instances of code after GGML_ABORT
61
+#pragma warning(disable: 4702)
62
63
64
#if defined(_WIN32)
0 commit comments