Skip to content

Commit

Permalink
[FIX] unqualified call
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Jul 21, 2023
1 parent 3d1f533 commit efbeef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/wt_int_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ TYPED_TEST(wt_int_test, load_and_move_and_rank)
load_from_file(iv, test_file);
TypeParam wt_load;
ASSERT_TRUE(load_from_file(wt_load, temp_file));
TypeParam wt = move(wt_load);
TypeParam wt = std::move(wt_load);
ASSERT_EQ(iv.size(), wt.size());
tMII check_rank;
for (size_type j = 0; j < iv.size(); ++j)
Expand Down Expand Up @@ -185,7 +185,7 @@ TYPED_TEST(wt_int_test, load_and_move_and_select)
load_from_file(iv, test_file);
TypeParam wt_load;
ASSERT_TRUE(load_from_file(wt_load, temp_file));
TypeParam wt = move(wt_load);
TypeParam wt = std::move(wt_load);
ASSERT_EQ(iv.size(), wt.size());
tMII count;
for (size_type j = 0; j < iv.size(); ++j)
Expand Down

0 comments on commit efbeef7

Please sign in to comment.