summaryrefslogtreecommitdiff
path: root/libutils/include/utils/NativeHandle.h
diff options
context:
space:
mode:
Diffstat (limited to 'libutils/include/utils/NativeHandle.h')
-rw-r--r--libutils/include/utils/NativeHandle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libutils/include/utils/NativeHandle.h b/libutils/include/utils/NativeHandle.h
index b82516879..73fe804cc 100644
--- a/libutils/include/utils/NativeHandle.h
+++ b/libutils/include/utils/NativeHandle.h
@@ -24,7 +24,7 @@ typedef struct native_handle native_handle_t;
namespace android {
-class NativeHandle: public LightRefBase<NativeHandle> {
+class NativeHandle : public LightRefBase<NativeHandle> {
public:
// Create a refcounted wrapper around a native_handle_t, and declare
// whether the wrapper owns the handle (so that it should clean up the
@@ -41,7 +41,7 @@ private:
friend class LightRefBase<NativeHandle>;
NativeHandle(native_handle_t* handle, bool ownsHandle);
- virtual ~NativeHandle();
+ ~NativeHandle();
native_handle_t* mHandle;
bool mOwnsHandle;