Skip to content

Commit

Permalink
3rdparty: Update wil
Browse files Browse the repository at this point in the history
Gets rid of a -Wdeprecated-volatile error.
  • Loading branch information
stenzek committed Jul 19, 2023
1 parent 130830f commit abe8670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/wil
Submodule wil updated 72 files
+18 −7 CMakeLists.txt
+54 −13 README.md
+41 −0 SECURITY.md
+54 −52 cmake/common_build_flags.cmake
+242 −188 include/wil/Tracelogging.h
+174 −34 include/wil/com.h
+467 −0 include/wil/com_apartment_variable.h
+33 −13 include/wil/common.h
+810 −0 include/wil/coroutine.h
+174 −21 include/wil/cppwinrt.h
+284 −0 include/wil/cppwinrt_authoring.h
+352 −0 include/wil/cppwinrt_helpers.h
+58 −31 include/wil/filesystem.h
+2 −2 include/wil/nt_result_macros.h
+2,941 −22 include/wil/registry.h
+1,223 −0 include/wil/registry_helpers.h
+202 −121 include/wil/resource.h
+19 −12 include/wil/result.h
+122 −55 include/wil/result_macros.h
+5 −4 include/wil/result_originate.h
+70 −70 include/wil/safecast.h
+81 −1 include/wil/stl.h
+42 −30 include/wil/token_helpers.h
+245 −21 include/wil/win32_helpers.h
+104 −0 include/wil/win32_result_macros.h
+82 −43 include/wil/winrt.h
+36 −13 include/wil/wistd_config.h
+22 −18 include/wil/wistd_functional.h
+46 −46 include/wil/wistd_memory.h
+4 −4 include/wil/wistd_type_traits.h
+43 −0 include/wil/wrl.h
+170 −0 natvis/wil.natvis
+2 −0 packaging/nuget/CMakeLists.txt
+1 −0 packaging/nuget/Microsoft.Windows.ImplementationLibrary.nuspec
+3 −0 packaging/nuget/Microsoft.Windows.ImplementationLibrary.targets
+20 −5 scripts/azure-pipelines.yml
+12 −18 scripts/build_all.cmd
+17 −28 scripts/init.cmd
+10 −9 scripts/init_all.cmd
+29 −43 scripts/runtests.cmd
+68 −1 tests/CMakeLists.txt
+401 −0 tests/ComApartmentVariableTests.cpp
+99 −13 tests/ComTests.cpp
+1 −1 tests/CommonTests.cpp
+2 −0 tests/CppWinRT20Tests.cpp
+221 −0 tests/CppWinRTAuthoringTests.cpp
+532 −0 tests/CppWinRTTests.cpp
+6 −6 tests/FakeWinRTTypes.h
+24 −1 tests/FileSystemTests.cpp
+2,973 −0 tests/RegistryTests.cpp
+47 −2 tests/ResourceTests.cpp
+54 −5 tests/ResultTests.cpp
+2 −2 tests/Rpc.cpp
+137 −0 tests/StlTests.cpp
+5 −5 tests/TokenHelpersTests.cpp
+3 −0 tests/TraceLoggingTests.cpp
+9 −9 tests/WatcherTests.cpp
+34 −6 tests/WinRTTests.cpp
+4 −4 tests/WinVerifyTrustTest.cpp
+4 −3 tests/app/CMakeLists.txt
+4,564 −1,522 tests/catch.hpp
+18 −0 tests/common.h
+16 −14 tests/cpplatest/CMakeLists.txt
+23 −0 tests/cpplatest/app.manifest
+12 −0 tests/main.cpp
+9 −5 tests/noexcept/CMakeLists.txt
+2 −2 tests/normal/CMakeLists.txt
+50 −0 tests/sanitize-address/CMakeLists.txt
+25 −0 tests/sanitize-undefined-behavior/CMakeLists.txt
+221 −20 tests/wiTest.cpp
+5 −3 tests/win7/CMakeLists.txt
+74 −29 tests/workarounds/wrl/wrl/implements.h

0 comments on commit abe8670

Please sign in to comment.