diff options
author | Andreas Huber <andih@google.com> | 2011-04-13 10:21:56 -0700 |
---|---|---|
committer | Andreas Huber <andih@google.com> | 2011-04-13 10:21:56 -0700 |
commit | 51faf46e2958c57dab46d9420e585319125c7c42 (patch) | |
tree | 82987a058b1300fb82ae552f660e67cb3e8bb80b /include | |
parent | 89675f7611759aaa5ad89f6cba4abf2e0e29c292 (diff) | |
download | frameworks_native-51faf46e2958c57dab46d9420e585319125c7c42.zip frameworks_native-51faf46e2958c57dab46d9420e585319125c7c42.tar.gz frameworks_native-51faf46e2958c57dab46d9420e585319125c7c42.tar.bz2 |
Parcel::appendFrom({const } Parcel *parcel, size_t, size_t)
As far as I can tell "parcel" isn't actually modified by the implementation.
Change-Id: Ib806eefdc13c97b932773e1dc9ca3a4aad4422b2
Diffstat (limited to 'include')
-rw-r--r-- | include/binder/Parcel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index 32c9a1d..bfe13f0 100644 --- a/include/binder/Parcel.h +++ b/include/binder/Parcel.h @@ -53,7 +53,8 @@ public: status_t setData(const uint8_t* buffer, size_t len); - status_t appendFrom(Parcel *parcel, size_t start, size_t len); + status_t appendFrom(const Parcel *parcel, + size_t start, size_t len); bool hasFileDescriptors() const; |