diff options
author | Narayan Kamath <narayan@google.com> | 2014-06-13 08:50:06 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-06-10 21:18:16 +0000 |
commit | f8f419bfcdc62043a6fe6941166d1c5c74f21caa (patch) | |
tree | 130d45a204899bae06390889a289a0b7b5b2bd25 /libs | |
parent | adb65d9add2b7350b563d4583c5efbe3f0f0aca1 (diff) | |
parent | 7da40c0a84dd89e92201448dd5ed3387dc94df2b (diff) | |
download | frameworks_native-f8f419bfcdc62043a6fe6941166d1c5c74f21caa.zip frameworks_native-f8f419bfcdc62043a6fe6941166d1c5c74f21caa.tar.gz frameworks_native-f8f419bfcdc62043a6fe6941166d1c5c74f21caa.tar.bz2 |
Merge "Remove Parcel::writeIntPtr."
Diffstat (limited to 'libs')
-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 f0d8732..76504ce 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); |