aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/netbsd/HostThreadNetBSD.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/netbsd/HostThreadNetBSD.h')
-rw-r--r--include/lldb/Host/netbsd/HostThreadNetBSD.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/include/lldb/Host/netbsd/HostThreadNetBSD.h b/include/lldb/Host/netbsd/HostThreadNetBSD.h
index 2ce1e48fa045..385f014899f7 100644
--- a/include/lldb/Host/netbsd/HostThreadNetBSD.h
+++ b/include/lldb/Host/netbsd/HostThreadNetBSD.h
@@ -12,20 +12,18 @@
#include "lldb/Host/posix/HostThreadPosix.h"
-#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/SmallString.h"
+#include "llvm/ADT/StringRef.h"
-namespace lldb_private
-{
+namespace lldb_private {
-class HostThreadNetBSD : public HostThreadPosix
-{
- public:
- HostThreadNetBSD();
- HostThreadNetBSD(lldb::thread_t thread);
+class HostThreadNetBSD : public HostThreadPosix {
+public:
+ HostThreadNetBSD();
+ HostThreadNetBSD(lldb::thread_t thread);
- static void SetName(lldb::thread_t tid, llvm::StringRef &name);
- static void GetName(lldb::thread_t tid, llvm::SmallVectorImpl<char> &name);
+ static void SetName(lldb::thread_t tid, llvm::StringRef &name);
+ static void GetName(lldb::thread_t tid, llvm::SmallVectorImpl<char> &name);
};
}