commit | f80cad978c99371373bd4e7d78184cf1babeae6f | [log] [tgz] |
---|---|---|
author | Steven Moreland <smoreland@google.com> | Mon Jun 18 22:15:37 2018 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Jun 18 22:15:37 2018 +0000 |
tree | 0e379cdf43203c61b104095f7801925119c4d887 | |
parent | 86ae999dd121376b3abaed26383068f3a6e14814 [diff] | |
parent | af78948c8c9d64685f3d62a501c50b89550ee098 [diff] |
Merge "Don't call the destructor on the base class."
diff --git a/base/HidlSupport.cpp b/base/HidlSupport.cpp index a69faa2..eb4368f 100644 --- a/base/HidlSupport.cpp +++ b/base/HidlSupport.cpp
@@ -315,9 +315,7 @@ : hidl_memory(name, std::move(handle), size) {} // it's required to have at least one out-of-line method to avoid weak vtable -HidlMemory::~HidlMemory() { - hidl_memory::~hidl_memory(); -} +HidlMemory::~HidlMemory() {} } // namespace hardware } // namespace android