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

Commit 992fa650 authored by Yi Kong's avatar Yi Kong Committed by android-build-merger
Browse files

Merge "Add explicit default copy constructor" am: c9810011

am: 3bf99597

Change-Id: I1866cb30496b1ad3d49171e1b2b44dcfe44575a3
parents 25eacb0b 3bf99597
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -36,6 +36,9 @@ class Parcelable {
public:
    virtual ~Parcelable() = default;

    Parcelable() = default;
    Parcelable(const Parcelable&) = default;

    // Write |this| parcelable to the given |parcel|.  Keep in mind that
    // implementations of writeToParcel must be manually kept in sync
    // with readFromParcel and the Java equivalent versions of these methods.