Commit a6538e3e authored by tzik's avatar tzik Committed by Commit Bot

Remove stray std::move()s from reporter_runner_win.cc

This CL replaces std::move()s whose result is not used, as clang starts
warning that on C++17 mode.

Bug: 752720
Change-Id: I843ba7d9356fdb14fe5cc0c258018fae201a32c6
Reviewed-on: https://chromium-review.googlesource.com/1068639Reviewed-by: default avatarJoe Mason <joenotcharles@chromium.org>
Commit-Queue: Taiju Tsuiki <tzik@chromium.org>
Cr-Commit-Position: refs/heads/master@{#560708}
parent 58e3fa83
...@@ -634,7 +634,7 @@ class ReporterRunner { ...@@ -634,7 +634,7 @@ class ReporterRunner {
// The reporter sequence has been scheduled to run, so don't notify that // The reporter sequence has been scheduled to run, so don't notify that
// it has not been scheduled. // it has not been scheduled.
std::move(scoped_runner.Release()); ignore_result(scoped_runner.Release());
} }
private: private:
...@@ -765,8 +765,8 @@ class ReporterRunner { ...@@ -765,8 +765,8 @@ class ReporterRunner {
if (!invocations_.container().empty()) { if (!invocations_.container().empty()) {
// If there are other invocations to start, then we shouldn't finalize // If there are other invocations to start, then we shouldn't finalize
// this object. ScopedClosureRunner::Release requires its return value to // this object. ScopedClosureRunner::Release requires its return value to
// be used, so simply std::move it, since it will not be needed. // be used, so simply ignore_result it, since it will not be needed.
std::move(scoped_runner.Release()); ignore_result(scoped_runner.Release());
PostNextInvocation(); PostNextInvocation();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment