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

Commit 54cb525e authored by zijunzhao's avatar zijunzhao Committed by Zijun Zhao
Browse files

Fix the missing std

Bug: b/239662094
Test: enable Wunqualified-std-cast-call locally and run m to build
Change-Id: Ib7fcc8ed359dff2ede1ba4f4570981be3f3f1079
parent 4d245b62
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;