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

Commit 4ce45cbb 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

am: e383f044

Change-Id: Id2eb933840e2a2c8c898474a5e5f2101e9d2dfd3
parents c0a749ef e383f044
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.