diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-21 08:34:06 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-22 21:02:04 +0200 |
commit | cae108404a88a37bd767b46b6162a6e711ee805a (patch) | |
tree | 31c390395e396f00b42931dd90f170b14457705d /src/CMakeLists.txt | |
parent | decoders: Use 2's complement instead of unary - (diff) | |
download | yuzu-cae108404a88a37bd767b46b6162a6e711ee805a.tar yuzu-cae108404a88a37bd767b46b6162a6e711ee805a.tar.gz yuzu-cae108404a88a37bd767b46b6162a6e711ee805a.tar.bz2 yuzu-cae108404a88a37bd767b46b6162a6e711ee805a.tar.lz yuzu-cae108404a88a37bd767b46b6162a6e711ee805a.tar.xz yuzu-cae108404a88a37bd767b46b6162a6e711ee805a.tar.zst yuzu-cae108404a88a37bd767b46b6162a6e711ee805a.zip |
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 397c1fa23..0bec3c53b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -60,13 +60,9 @@ if (MSVC) /W3 /WX - /we4018 # 'expression': signed/unsigned mismatch /we4062 # Enumerator 'identifier' in a switch of enum 'enumeration' is not handled - /we4101 # 'identifier': unreferenced local variable /we4189 # 'identifier': local variable is initialized but not referenced /we4265 # 'class': class has virtual functions, but destructor is not virtual - /we4267 # 'var': conversion from 'size_t' to 'type', possible loss of data - /we4305 # 'context': truncation from 'type1' to 'type2' /we4388 # 'expression': signed/unsigned mismatch /we4389 # 'operator': signed/unsigned mismatch /we4456 # Declaration of 'identifier' hides previous local declaration @@ -77,9 +73,7 @@ if (MSVC) /we4547 # 'operator': operator before comma has no effect; expected operator with side-effect /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'? /we4555 # Expression has no effect; expected expression with side-effect - /we4715 # 'function': not all control paths return a value /we4826 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior. - /we4834 # Discarding return value of function with 'nodiscard' attribute /we5038 # data member 'member1' will be initialized after data member 'member2' /we5245 # 'function': unreferenced function with internal linkage has been removed ) |