Skip to content

Commit b8d5690

Browse files
authored
Fix clang-cl mismatching signedness error
1 parent 494ac8f commit b8d5690

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_nocoro/get.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ struct async_completion_source : implements<async_completion_source<TResult>, IA
6060

6161
TEST_CASE("get")
6262
{
63-
auto acs = winrt::make_self<async_completion_source<int>>();
63+
auto acs = winrt::make_self<async_completion_source<uint32_t>>();
6464

6565
std::thread worker([acs]
6666
{
@@ -70,5 +70,5 @@ TEST_CASE("get")
7070

7171
worker.detach();
7272

73-
REQUIRE(acs.as<IAsyncOperation<int>>().get() == 0xDEADBEEF);
73+
REQUIRE(acs.as<IAsyncOperation<uint32_t>>().get() == 0xDEADBEEF);
7474
}

0 commit comments

Comments
 (0)