commit | 8a917b313263151cd343e0f7f1aa473ef5dac2e5 | [log] [tgz] |
---|---|---|
author | zijunzhao <zijunzhao@google.com> | Mon Mar 13 16:28:58 2023 +0000 |
committer | Cherrypicker Worker <android-build-cherrypicker-worker@google.com> | Wed Mar 15 09:48:51 2023 +0000 |
tree | 5ed8a2842906ea5571010a064702e069380e67db | |
parent | fee7cb465c91ff5aad5acb357b17ae99be3010b0 [diff] |
Fix the missing std Bug: b/239662094 Test: enable Wunqualified-std-cast-call locally and run m to build (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:54cb525ec046dfcb6a49ee4e932453f8782c496e) Merged-In: Ib7fcc8ed359dff2ede1ba4f4570981be3f3f1079 Change-Id: Ifd6750cf08193f5565546d8417b7fdffb73f6903
diff --git a/camera/tests/fuzzer/camera_captureResult_fuzzer.cpp b/camera/tests/fuzzer/camera_captureResult_fuzzer.cpp index 03cf9c4..1396431 100644 --- a/camera/tests/fuzzer/camera_captureResult_fuzzer.cpp +++ b/camera/tests/fuzzer/camera_captureResult_fuzzer.cpp
@@ -63,7 +63,7 @@ invokeReadWriteNullParcel<CaptureResult>(captureResult); invokeReadWriteParcel<CaptureResult>(captureResult); CaptureResult captureResult2(*captureResult); - CaptureResult captureResult3(move(captureResult2)); + CaptureResult captureResult3(std::move(captureResult2)); delete captureResult; delete physicalCaptureResultInfo;