diff options
| author | 2024-05-22 16:27:30 +0000 | |
|---|---|---|
| committer | 2024-05-22 16:27:30 +0000 | |
| commit | 091ff9082f832cb5afbf682dec16749f1ee05ece (patch) | |
| tree | 1e5f2314123bc678bcadaa858b96ec6f369efcd1 /libs/binder/Stability.cpp | |
| parent | 459dc3e6147ca789229b60f0ee337d6d5db646ad (diff) | |
| parent | e7f6fbe9fd71e1c940a8132029deac63dfeaf929 (diff) | |
Merge "Fix libbinder_sdk build warnings" into main am: 3d0aa7899c am: e7f6fbe9fd
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3068485
Change-Id: I1647feb8e8ef6d79a040506b96659fa79bfd6c82
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'libs/binder/Stability.cpp')
| -rw-r--r-- | libs/binder/Stability.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Stability.cpp b/libs/binder/Stability.cpp index 665dfea456..4fb8fa08bc 100644 --- a/libs/binder/Stability.cpp +++ b/libs/binder/Stability.cpp @@ -70,7 +70,7 @@ bool Stability::requiresVintfDeclaration(const sp<IBinder>& binder) { } void Stability::tryMarkCompilationUnit(IBinder* binder) { - (void)setRepr(binder, getLocalLevel(), REPR_NONE); + std::ignore = setRepr(binder, getLocalLevel(), REPR_NONE); } // after deprecation of the VNDK, these should be aliases. At some point |