diff options
author | 2023-12-06 23:56:51 +0000 | |
---|---|---|
committer | 2023-12-06 23:56:51 +0000 | |
commit | 43571dd2ef971a05272e3101928836517004fc85 (patch) | |
tree | 14ed0f3f2c52f8455a517af18b848b8ab304a579 /libs/binder/Parcel.cpp | |
parent | ef2e1643f5c771bfa9eabb8a98a37f8be96691af (diff) | |
parent | 8378013d7981e802787d25c25d7408363894c786 (diff) |
Merge "Minor build-outside-android fixes" into main
Diffstat (limited to 'libs/binder/Parcel.cpp')
-rw-r--r-- | libs/binder/Parcel.cpp | 2 |
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, |