Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion submodules/wil
Submodule wil updated 47 files
+42 −0 .clang-tidy
+13 −9 CMakeLists.txt
+13 −4 CMakePresets.json
+1 −3 README.md
+65 −62 include/wil/com.h
+44 −23 include/wil/common.h
+14 −8 include/wil/cppwinrt.h
+2 −2 include/wil/cppwinrt_authoring.h
+21 −2 include/wil/filesystem.h
+40 −37 include/wil/registry_helpers.h
+134 −105 include/wil/resource.h
+6 −5 include/wil/result.h
+143 −80 include/wil/result_macros.h
+37 −23 include/wil/win32_helpers.h
+39 −4 include/wil/wistd_config.h
+63 −35 include/wil/wistd_type_traits.h
+58 −4 scripts/init.cmd
+19 −11 scripts/runtests.cmd
+2 −31 tests/CMakeLists.txt
+70 −67 tests/ComApartmentVariableTests.cpp
+228 −216 tests/ComTests.cpp
+6 −6 tests/CommonTests.cpp
+19 −19 tests/CppWinRTAuthoringTests.cpp
+44 −40 tests/CppWinRTTests.cpp
+1 −1 tests/FakeWinRTTypes.h
+16 −10 tests/FileSystemTests.cpp
+9 −7 tests/MockingTests.cpp
+2 −0 tests/NetworkTests.cpp
+124 −129 tests/RegistryTests.cpp
+109 −111 tests/ResourceTests.cpp
+26 −21 tests/ResultTests.cpp
+14 −14 tests/Rpc.cpp
+2 −0 tests/SafeCastTests.cpp
+13 −13 tests/StlTests.cpp
+8 −8 tests/TokenHelpersTests.cpp
+4 −0 tests/TraceLoggingTests.h
+12 −13 tests/WatcherTests.cpp
+16 −14 tests/WinRTTests.cpp
+4 −0 tests/WinVerifyTrustTest.cpp
+2 −2 tests/WindowingTests.cpp
+8 −7 tests/WistdTests.cpp
+8 −2 tests/common.h
+7 −0 tests/cpplatest/CMakeLists.txt
+24 −16 tests/main.cpp
+12 −1 tests/mocking.h
+4 −3 tests/test_objects.h
+256 −251 tests/wiTest.cpp
Loading