Skip to content

Commit

Permalink
Fix usmPoolManager test coverity defect
Browse files Browse the repository at this point in the history
  • Loading branch information
kswiecicki committed Oct 4, 2023
1 parent f5829a1 commit 7a9e83c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/usm/usmPoolManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ struct urUsmPoolManagerTest : public uur::urContextTest {
UUR_RETURN_ON_FATAL_FAILURE(urContextTest::SetUp());
auto [ret, descs] = usm::pool_descriptor::create(nullptr, context);
ASSERT_EQ(ret, UR_RESULT_SUCCESS);
poolDescriptors = descs;
poolDescriptors = std::move(descs);
}

std::vector<usm::pool_descriptor> poolDescriptors;
Expand Down

0 comments on commit 7a9e83c

Please sign in to comment.