diff options
author | 2019-09-04 18:15:57 -0700 | |
---|---|---|
committer | 2019-09-04 18:19:24 -0700 | |
commit | f60d95744e0a9369395372d06c1c0deaebb3f511 (patch) | |
tree | dc405ea8a39e1ac86f6bb237046c9bde88aed311 | |
parent | 0bc2361309d705f8c7f7766f1912fd0f7035d199 (diff) |
libbinder: remove forward declaration of Value
Since it no longer exists.
Bug: N/A
Test: N/A
Change-Id: I0bda42994b9c9f10bcdadb461766b5180db5e768
-rw-r--r-- | libs/binder/IpPrefix.cpp | 1 | ||||
-rw-r--r-- | libs/binder/include/binder/Parcel.h | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/libs/binder/IpPrefix.cpp b/libs/binder/IpPrefix.cpp index 3a8a63c46e..8d622668cc 100644 --- a/libs/binder/IpPrefix.cpp +++ b/libs/binder/IpPrefix.cpp @@ -30,7 +30,6 @@ using android::NO_ERROR; using android::Parcel; using android::status_t; using android::UNEXPECTED_NULL; -using namespace ::android::binder; namespace android { diff --git a/libs/binder/include/binder/Parcel.h b/libs/binder/include/binder/Parcel.h index c8f82a3e09..c369f9e4b1 100644 --- a/libs/binder/include/binder/Parcel.h +++ b/libs/binder/include/binder/Parcel.h @@ -45,10 +45,6 @@ class ProcessState; class String8; class TextOutput; -namespace binder { -class Value; -}; - class Parcel { friend class IPCThreadState; public: |