diff options
| author | 2014-06-12 15:24:06 +0100 | |
|---|---|---|
| committer | 2014-06-12 15:26:39 +0100 | |
| commit | 7da40c0a84dd89e92201448dd5ed3387dc94df2b (patch) | |
| tree | bdf734aa97b0c58e40671149fac7bfa6d82fdad1 /libs/binder/Parcel.cpp | |
| parent | 1210f2ab822e4c24333abd4af498ff20af0224fa (diff) | |
Remove Parcel::writeIntPtr.
All uses of this API have been removed. It should
never have been made public in the first place.
bug: 15424960
Change-Id: Id07d24ec95b2b393e6da138a7e8a9a4ecebeca94
Diffstat (limited to 'libs/binder/Parcel.cpp')
| -rw-r--r-- | libs/binder/Parcel.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index f0d8732778..76504cee5c 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -679,11 +679,6 @@ status_t Parcel::writeDouble(double val) #endif -status_t Parcel::writeIntPtr(intptr_t val) -{ - return writeAligned(val); -} - status_t Parcel::writeCString(const char* str) { return write(str, strlen(str)+1); |