summaryrefslogtreecommitdiff
path: root/include/lldb/Host/posix/HostThreadPosix.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/posix/HostThreadPosix.h')
-rw-r--r--include/lldb/Host/posix/HostThreadPosix.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/lldb/Host/posix/HostThreadPosix.h b/include/lldb/Host/posix/HostThreadPosix.h
index 8839b8d4068b9..e044313cd7dc3 100644
--- a/include/lldb/Host/posix/HostThreadPosix.h
+++ b/include/lldb/Host/posix/HostThreadPosix.h
@@ -22,13 +22,14 @@ class HostThreadPosix : public HostNativeThreadBase
public:
HostThreadPosix();
HostThreadPosix(lldb::thread_t thread);
- virtual ~HostThreadPosix();
+ ~HostThreadPosix() override;
Error Join(lldb::thread_result_t *result) override;
Error Cancel() override;
Error Detach();
};
-}
-#endif
+} // namespace lldb_private
+
+#endif // lldb_Host_posix_HostThreadPosix_h_