diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-21 08:34:07 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-22 21:02:04 +0200 |
commit | 3822e313232039af810b588646b724e19bc29bfc (patch) | |
tree | a231f473366f43c5cef8a540a090d83132fdb7b3 /src/CMakeLists.txt | |
parent | CMakeLists: Remove redundant warnings (diff) | |
download | yuzu-3822e313232039af810b588646b724e19bc29bfc.tar yuzu-3822e313232039af810b588646b724e19bc29bfc.tar.gz yuzu-3822e313232039af810b588646b724e19bc29bfc.tar.bz2 yuzu-3822e313232039af810b588646b724e19bc29bfc.tar.lz yuzu-3822e313232039af810b588646b724e19bc29bfc.tar.xz yuzu-3822e313232039af810b588646b724e19bc29bfc.tar.zst yuzu-3822e313232039af810b588646b724e19bc29bfc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0bec3c53b..c94b78eb7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -76,6 +76,9 @@ if (MSVC) /we4826 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior. /we5038 # data member 'member1' will be initialized after data member 'member2' /we5245 # 'function': unreferenced function with internal linkage has been removed + + /wd4100 # 'identifier': unreferenced formal parameter + /wd4324 # 'struct_name': structure was padded due to __declspec(align()) ) if (USE_CCACHE) |