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

Commit 28ac876b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "libbinder: Fix for using default constructor on IpPrefix class"

parents d3e0c11c 48dd099b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -71,6 +71,7 @@ public:

private:
    union InternalUnion {
        InternalUnion() = default;
        InternalUnion(const struct in6_addr &addr):mIn6Addr(addr) { };
        InternalUnion(const struct in_addr &addr):mInAddr(addr) { };
        struct in6_addr mIn6Addr;