Skip to content

Commit fa7d0d3

Browse files
Jinming-Huvinjiang
authored andcommitted
Explicitly specify launch policy, instead of up to implementation
1 parent 309decc commit fa7d0d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.WindowsAzure.Storage/tests/cloud_storage_account_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ SUITE(Core)
929929
std::vector<std::future<void>> results;
930930
for (int i = 1; i < 0x100; ++i)
931931
{
932-
results.emplace_back(std::async(check_account_permission, i));
932+
results.emplace_back(std::async(std::launch::async, check_account_permission, i));
933933
}
934934
for (const auto& r : results)
935935
{

0 commit comments

Comments
 (0)