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

Commit 3bf99597 authored by Yi Kong's avatar Yi Kong Committed by android-build-merger
Browse files

Merge "Add explicit default copy constructor"

am: c9810011

Change-Id: I4d6198e65c54f3f620c031da3d9fa395d6d3762f
parents 4c246fe5 c9810011
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.