summaryrefslogtreecommitdiff
path: root/libs/binder/Parcel.cpp
diff options
context:
space:
mode:
author Tomasz Wasilczyk <twasilczyk@google.com> 2023-12-07 01:02:26 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2023-12-07 01:02:26 +0000
commit7d65850413e65ecd761494a97364ca05a080e1e4 (patch)
treed11fb54cc613243a04d6108b2eed8dcf09355cb9 /libs/binder/Parcel.cpp
parent584e277bcf36d95338d67254fb033d19ad367df7 (diff)
parent43571dd2ef971a05272e3101928836517004fc85 (diff)
Merge "Minor build-outside-android fixes" into main am: 43571dd2ef
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2852823 Change-Id: I23ed0c5006c94e986f4911add441f622c6c29f72 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'libs/binder/Parcel.cpp')
-rw-r--r--libs/binder/Parcel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index a1f164c5c7..7a54a03389 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -110,7 +110,7 @@ static std::atomic<size_t> gParcelGlobalAllocSize;
constexpr size_t kMaxFds = 1024;
// Maximum size of a blob to transfer in-place.
-static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
+[[maybe_unused]] static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
enum {
BLOB_INPLACE = 0,