aboutsummaryrefslogtreecommitdiff
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lldb/Host/posix/HostThreadPosix.h b/include/lldb/Host/posix/HostThreadPosix.h
index e0eaedf73be2..8839b8d4068b 100644
--- a/include/lldb/Host/posix/HostThreadPosix.h
+++ b/include/lldb/Host/posix/HostThreadPosix.h
@@ -24,8 +24,8 @@ class HostThreadPosix : public HostNativeThreadBase
HostThreadPosix(lldb::thread_t thread);
virtual ~HostThreadPosix();
- virtual Error Join(lldb::thread_result_t *result);
- virtual Error Cancel();
+ Error Join(lldb::thread_result_t *result) override;
+ Error Cancel() override;
Error Detach();
};