Skip to content

Commit

Permalink
Merge pull request #927 from kswiecicki/coverity-usm-pool-manager-test
Browse files Browse the repository at this point in the history
Fix usmPoolManager test coverity defect
  • Loading branch information
pbalcer authored Oct 4, 2023
2 parents f5829a1 + 7a9e83c commit cc243f3
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 cc243f3

Please sign in to comment.