From fce22a44c7089d5ada4eaf0133a5f86e71021590 Mon Sep 17 00:00:00 2001 From: Ryan Prichard Date: Tue, 13 Aug 2024 18:14:08 -0700 Subject: binder: avoid vector A container of const T uses std::allocator, which was an undocumented libc++ extension that has been removed. See llvm.org/PR96319. Bug: http://b/349681543 Test: m libbinder_on_trusty_mock Test: m MODULES-IN-frameworks-native Change-Id: Ibdd9b30c6e913b0785250b2a034ca3b193355032 --- libs/binder/trusty/include/binder/RpcServerTrusty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/binder/trusty/include/binder/RpcServerTrusty.h b/libs/binder/trusty/include/binder/RpcServerTrusty.h index fe44ea5e28..583ad015e1 100644 --- a/libs/binder/trusty/include/binder/RpcServerTrusty.h +++ b/libs/binder/trusty/include/binder/RpcServerTrusty.h @@ -42,7 +42,7 @@ public: // equivalent. struct PortAcl { uint32_t flags; - std::vector uuids; + std::vector uuids; const void* extraData; }; -- cgit v1.2.3-59-g8ed1b