aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/ThisThread.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/ThisThread.h')
-rw-r--r--include/lldb/Host/ThisThread.h25
1 files changed, 11 insertions, 14 deletions
diff --git a/include/lldb/Host/ThisThread.h b/include/lldb/Host/ThisThread.h
index 23acee9d3fc1..1392b10e1382 100644
--- a/include/lldb/Host/ThisThread.h
+++ b/include/lldb/Host/ThisThread.h
@@ -14,26 +14,23 @@
#include <string>
-namespace llvm
-{
+namespace llvm {
template <class T> class SmallVectorImpl;
}
-namespace lldb_private
-{
+namespace lldb_private {
-class ThisThread
-{
- private:
- ThisThread();
+class ThisThread {
+private:
+ ThisThread();
- public:
- // ThisThread common functions.
- static void SetName(llvm::StringRef name, int max_length);
+public:
+ // ThisThread common functions.
+ static void SetName(llvm::StringRef name, int max_length);
- // ThisThread platform-specific functions.
- static void SetName(llvm::StringRef name);
- static void GetName(llvm::SmallVectorImpl<char> &name);
+ // ThisThread platform-specific functions.
+ static void SetName(llvm::StringRef name);
+ static void GetName(llvm::SmallVectorImpl<char> &name);
};
}