ggml : ignore more msvc warnings (ggml/906)

This commit is contained in:
Borislav Stanimirov
2024-08-07 10:00:56 +03:00
committed by Georgi Gerganov
parent b3264eb266
commit aa816c922c
2 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,9 @@
// disable POSIX deprecation warnings
// these functions are never going away, anyway
#pragma warning(disable: 4996)
// unreachable code because of multiple instances of code after GGML_ABORT
#pragma warning(disable: 4702)
#endif
#if defined(_WIN32)