summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-06-13 08:50:06 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-06-10 21:18:16 +0000
commitf8f419bfcdc62043a6fe6941166d1c5c74f21caa (patch)
tree130d45a204899bae06390889a289a0b7b5b2bd25 /libs
parentadb65d9add2b7350b563d4583c5efbe3f0f0aca1 (diff)
parent7da40c0a84dd89e92201448dd5ed3387dc94df2b (diff)
downloadframeworks_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.cpp5
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);