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

Commit 13e18cc3 authored by Nikita Ioffe's avatar Nikita Ioffe Committed by android-build-merger
Browse files

Merge "Suppress warn_unused_result warning in otapreopt_chroot" am: dd2f6940...

Merge "Suppress warn_unused_result warning in otapreopt_chroot" am: dd2f6940 am: 52517afa am: 3a4a28ca
am: 4e54fe82

Change-Id: I74d6f71783dccc4025bd575067cd894f664d2f4a
parents 972fa7a0 4e54fe82
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -64,7 +64,8 @@ static std::vector<apex::ApexFile> ActivateApexPackages() {
    // system/apex/apexd/apexd_main.cpp.
    //
    // Only scan the APEX directory under /system (within the chroot dir).
    apex::scanPackagesDirAndActivate(apex::kApexPackageSystemDir);
    // Cast call to void to suppress warn_unused_result.
    static_cast<void>(apex::scanPackagesDirAndActivate(apex::kApexPackageSystemDir));
    return apex::getActivePackages();
}