[Lldb-commits] [lldb] r162406 - /lldb/trunk/include/lldb/Target/Thread.h

Jim Ingham jingham at apple.com
Wed Aug 22 15:52:39 PDT 2012


Author: jingham
Date: Wed Aug 22 17:52:39 2012
New Revision: 162406

URL: http://llvm.org/viewvc/llvm-project?rev=162406&view=rev
Log:
Fix some indenting.

Modified:
    lldb/trunk/include/lldb/Target/Thread.h

Modified: lldb/trunk/include/lldb/Target/Thread.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Thread.h?rev=162406&r1=162405&r2=162406&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Thread.h (original)
+++ lldb/trunk/include/lldb/Target/Thread.h Wed Aug 22 17:52:39 2012
@@ -21,34 +21,34 @@
 
 namespace lldb_private {
 
-    class ThreadProperties : public Properties
-    {
-    public:
-        ThreadProperties(bool is_global);
-        
-        virtual
-        ~ThreadProperties();
-        
-        //------------------------------------------------------------------
-        /// The regular expression returned determines symbols that this
-        /// thread won't stop in during "step-in" operations.
-        ///
-        /// @return
-        ///    A pointer to a regular expression to compare against symbols,
-        ///    or NULL if all symbols are allowed.
-        ///
-        //------------------------------------------------------------------
-        const RegularExpression *
-        GetSymbolsToAvoidRegexp();
-        
-        bool
-        GetTraceEnabledState() const;
-    };
+class ThreadProperties : public Properties
+{
+public:
+    ThreadProperties(bool is_global);
+    
+    virtual
+    ~ThreadProperties();
     
-    typedef STD_SHARED_PTR(ThreadProperties) ThreadPropertiesSP;
+    //------------------------------------------------------------------
+    /// The regular expression returned determines symbols that this
+    /// thread won't stop in during "step-in" operations.
+    ///
+    /// @return
+    ///    A pointer to a regular expression to compare against symbols,
+    ///    or NULL if all symbols are allowed.
+    ///
+    //------------------------------------------------------------------
+    const RegularExpression *
+    GetSymbolsToAvoidRegexp();
+    
+    bool
+    GetTraceEnabledState() const;
+};
+
+typedef STD_SHARED_PTR(ThreadProperties) ThreadPropertiesSP;
 
 
-    class Thread :
+class Thread :
     public STD_ENABLE_SHARED_FROM_THIS(Thread),
     public ThreadProperties,
     public UserID,





More information about the lldb-commits mailing list