Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a917b31 authored by zijunzhao's avatar zijunzhao Committed by Cherrypicker Worker
Browse files

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
parent fee7cb46
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
    invokeReadWriteNullParcel<CaptureResult>(captureResult);
    invokeReadWriteParcel<CaptureResult>(captureResult);
    CaptureResult captureResult2(*captureResult);
    CaptureResult captureResult3(move(captureResult2));
    CaptureResult captureResult3(std::move(captureResult2));

    delete captureResult;
    delete physicalCaptureResultInfo;