Revert "MSVC: lower C4100 warning level from 4 to 3"

This reverts commit db4e7616f3.

Caused many issues when compiling mantaflow.
This commit is contained in:
2023-02-14 15:35:36 -03:00
parent f72d28d7e7
commit a755e6e63f
13 changed files with 17 additions and 45 deletions

View File

@@ -12,9 +12,6 @@
#if defined(__GNUC__) || defined(__clang__)
# pragma GCC diagnostic error "-Wmissing-prototypes"
# pragma GCC diagnostic ignored "-Wunused-parameter"
#elif defined(_MSC_VER)
/* Suppress unreferenced formal parameter warning. */
# pragma warning(disable : 4100)
#endif
/* python, will come back */