diff options
Diffstat (limited to 'lldb/source/Host/linux/ThisThread.cpp')
-rw-r--r-- | lldb/source/Host/linux/ThisThread.cpp | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/lldb/source/Host/linux/ThisThread.cpp b/lldb/source/Host/linux/ThisThread.cpp index 1c68c8ba16d..f65440b9d77 100644 --- a/lldb/source/Host/linux/ThisThread.cpp +++ b/lldb/source/Host/linux/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" @@ -16,14 +16,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); } |