Build: moved MSVC warning C5054 from warning level 4 to 3

This commit is contained in:
Ovahlord
2023-07-11 18:49:52 +02:00
parent d015711fbb
commit d535977c6d

View File

@@ -148,7 +148,8 @@ target_compile_options(trinity-compile-option-interface
/w34100 # C4100 'identifier' : unreferenced formal parameter
/w34101 # C4101: 'identifier' : unreferenced local variable
/w34189 # C4189: 'identifier' : local variable is initialized but not referenced
/w34389) # C4189: 'equality-operator' : signed/unsigned mismatch
/w34389 # C4389: 'equality-operator' : signed/unsigned mismatch
/w35054) # C5054: 'operator 'operator-name': deprecated between enumerations of different types'
# Enable and treat as errors the following warnings to easily detect virtual function signature failures:
# 'function' : member function does not override any base class virtual member function