diff options
| -rw-r--r-- | libs/binder/include/binder/ParcelableHolder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/include/binder/ParcelableHolder.h b/libs/binder/include/binder/ParcelableHolder.h index b6814aa5fe..5da2515006 100644 --- a/libs/binder/include/binder/ParcelableHolder.h +++ b/libs/binder/include/binder/ParcelableHolder.h @@ -103,7 +103,7 @@ public: return std::shared_ptr<T>(mParcelable, reinterpret_cast<T*>(mParcelable.get())); } - Stability getStability() const override { return mStability; }; + Stability getStability() const override { return mStability; } inline bool operator!=(const ParcelableHolder& rhs) const { return std::tie(mParcelable, mParcelPtr, mStability) != |