commit | 7fdb60fd8642e3f4dbe30dd0222cc943d6de71f6 | [log] [tgz] |
---|---|---|
author | Donghong Weng <donghongweng@google.com> | Sun Aug 21 10:47:00 2022 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sun Aug 21 10:47:00 2022 +0000 |
tree | 39ac7795d577b7c1e2f521f39a075a6049bdd1aa | |
parent | 48584672220b61666be3a78b3ba652327f698025 [diff] | |
parent | 16d891c6e3ad7810be538eac2ce66aa1eac14a79 [diff] |
Merge "Fix unqualified-std-cast-call compiler warning"
diff --git a/media/tests/benchmark/src/native/common/BenchmarkCommon.h b/media/tests/benchmark/src/native/common/BenchmarkCommon.h index 40a8c9e..ba3e81a 100644 --- a/media/tests/benchmark/src/native/common/BenchmarkCommon.h +++ b/media/tests/benchmark/src/native/common/BenchmarkCommon.h
@@ -50,7 +50,7 @@ { lock_guard<mutex> lock(mMutex); needsNotify = mQueue.empty(); - mQueue.push(move(elem)); + mQueue.push(std::move(elem)); } if (needsNotify) mQueueNotEmptyCondition.notify_one(); }