summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/netbsd/ThisThread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Host/netbsd/ThisThread.cpp')
-rw-r--r--lldb/source/Host/netbsd/ThisThread.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/lldb/source/Host/netbsd/ThisThread.cpp b/lldb/source/Host/netbsd/ThisThread.cpp
index dff5d9e0f10..ea16981ef25 100644
--- a/lldb/source/Host/netbsd/ThisThread.cpp
+++ b/lldb/source/Host/netbsd/ThisThread.cpp
@@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
-#include "lldb/Host/HostNativeThread.h"
#include "lldb/Host/ThisThread.h"
+#include "lldb/Host/HostNativeThread.h"
#include "llvm/ADT/SmallVector.h"
@@ -17,14 +17,10 @@
using namespace lldb_private;
-void
-ThisThread::SetName(llvm::StringRef name)
-{
- HostNativeThread::SetName(::pthread_self(), name);
+void ThisThread::SetName(llvm::StringRef name) {
+ HostNativeThread::SetName(::pthread_self(), name);
}
-void
-ThisThread::GetName(llvm::SmallVectorImpl<char> &name)
-{
- HostNativeThread::GetName(::pthread_self(), name);
+void ThisThread::GetName(llvm::SmallVectorImpl<char> &name) {
+ HostNativeThread::GetName(::pthread_self(), name);
}
OpenPOWER on IntegriCloud