summaryrefslogtreecommitdiff
path: root/base/include/hidl/HidlInternal.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/include/hidl/HidlInternal.h')
-rw-r--r--base/include/hidl/HidlInternal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/base/include/hidl/HidlInternal.h b/base/include/hidl/HidlInternal.h
index 5a08bc3..d000a87 100644
--- a/base/include/hidl/HidlInternal.h
+++ b/base/include/hidl/HidlInternal.h
@@ -48,6 +48,15 @@ void logAlwaysFatal(const char *message);
// If "ro.vndk.version" is not set or set to "current", it returns empty string.
std::string getVndkVersionStr();
+// Explicitly invokes the parameterized element's destructor;
+// intended to be used alongside the placement new operator.
+template<typename T>
+void destructElement(T* element) {
+ if (element != nullptr) {
+ element->~T();
+ }
+}
+
// HIDL client/server code should *NOT* use this class.
//
// hidl_pointer wraps a pointer without taking ownership,