summaryrefslogtreecommitdiff
path: root/libs/binder/Parcel.cpp
diff options
context:
space:
mode:
author Tomasz Wasilczyk <twasilczyk@google.com> 2023-12-06 23:56:51 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-12-06 23:56:51 +0000
commit43571dd2ef971a05272e3101928836517004fc85 (patch)
tree14ed0f3f2c52f8455a517af18b848b8ab304a579 /libs/binder/Parcel.cpp
parentef2e1643f5c771bfa9eabb8a98a37f8be96691af (diff)
parent8378013d7981e802787d25c25d7408363894c786 (diff)
Merge "Minor build-outside-android fixes" into main
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,