You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(CMakeLists): Add MSVC warning flags for ggml modules
Add MSVC warning flags to improve code quality and catch potential issues
early. The following flags have been added:
- /W4: Comprehensive warnings (similar to -Wall and some of -Wextra)
- /we4456: Declaration hides previous local declaration
- /we4457: Declaration hides function parameter
- /we4458: Declaration hides class member
- /wd4100: Unreferenced formal parameter (too noisy)
- /wd4324: Structure was padded due to alignment specifier
0 commit comments