Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fce22a44 authored by Ryan Prichard's avatar Ryan Prichard
Browse files

binder: avoid vector<const T>

A container of const T uses std::allocator<const T>, 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
parent 30b1a88a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ public:
    // equivalent.
    struct PortAcl {
        uint32_t flags;
        std::vector<const uuid> uuids;
        std::vector<uuid> uuids;
        const void* extraData;
    };