Skip to content

Commit

Permalink
rgw/test: add std:: qualifiers to 'move'
Browse files Browse the repository at this point in the history
to silence compiler warnings.

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
ronen-fr committed Sep 23, 2023
1 parent 3e9269f commit 4f1a4fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/rgw/test_d4n_filter.cc
Original file line number Diff line number Diff line change
@@ -1906,7 +1906,7 @@ TEST_F(D4NFilterFixture, DataCheck) {

ASSERT_EQ(testWriter->prepare(null_yield), 0);

ASSERT_EQ(testWriter->process(move(data), 0), 0);
ASSERT_EQ(testWriter->process(std::move(data), 0), 0);

ASSERT_EQ(testWriter->complete(accounted_size, etag,
&mtime, set_mtime,
@@ -1931,7 +1931,7 @@ TEST_F(D4NFilterFixture, DataCheck) {

ASSERT_EQ(testWriter->prepare(null_yield), 0);

ASSERT_EQ(testWriter->process(move(dataNew), 0), 0);
ASSERT_EQ(testWriter->process(std::move(dataNew), 0), 0);

ASSERT_EQ(testWriter->complete(accounted_size, etag,
&mtime, set_mtime,

0 comments on commit 4f1a4fe

Please sign in to comment.