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

Commit e383f044 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

am: 992fa650

Change-Id: I536ae9a50f5b263c1a60011fdbc1bba269096d1e
parents fe0c36fe 992fa650
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.