summaryrefslogtreecommitdiff
path: root/libs/binder/Parcel.cpp
diff options
context:
space:
mode:
author Tomasz Wasilczyk <twasilczyk@google.com> 2023-12-07 00:00:12 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2023-12-07 00:00:12 +0000
commitdda7686ebb990be2111ba9b6c53d703148f0310c (patch)
tree1c146f2ccdb4b7e0d1880130aba9d9fd832f4f1f /libs/binder/Parcel.cpp
parent78825b66333248f17f25c53d78fdb9433070145f (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: Ice621b659958a721d3650b5bd8a1ef538447ccb2 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,