Fix macOS warnings

This commit is contained in:
momo5502
2025-01-05 20:14:53 +01:00
parent a8b4b69a8b
commit eeac915a55
4 changed files with 5 additions and 4 deletions

View File

@@ -21,7 +21,7 @@
#include <cstring>
#define ZeroMemory(x, y) memset(x, 0, y)
#define ZeroMemory(x, y) memset(x, 0, static_cast<size_t>(y))
#endif