[Lldb-commits] [lldb] r123782 - /lldb/trunk/include/lldb/lldb-enumerations.h

Greg Clayton gclayton at apple.com
Tue Jan 18 13:49:11 PST 2011


Author: gclayton
Date: Tue Jan 18 15:49:11 2011
New Revision: 123782

URL: http://llvm.org/viewvc/llvm-project?rev=123782&view=rev
Log:
Remove trailing commas from lldb enumerations (patch from Stephen Wilson).

Modified:
    lldb/trunk/include/lldb/lldb-enumerations.h

Modified: lldb/trunk/include/lldb/lldb-enumerations.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/lldb-enumerations.h?rev=123782&r1=123781&r2=123782&view=diff
==============================================================================
--- lldb/trunk/include/lldb/lldb-enumerations.h (original)
+++ lldb/trunk/include/lldb/lldb-enumerations.h Tue Jan 18 15:49:11 2011
@@ -156,7 +156,7 @@
     eFormatHex,
     eFormatFloat,
     eFormatOctal,
-    eFormatOSType,      // OS character codes encoded into an integer 'PICT' 'text' etc...
+    eFormatOSType,          // OS character codes encoded into an integer 'PICT' 'text' etc...
     eFormatUnicode16,
     eFormatUnicode32,
     eFormatUnsigned,
@@ -173,7 +173,7 @@
     eFormatVectorOfFloat32,
     eFormatVectorOfFloat64,
     eFormatVectorOfUInt128,
-    eFormatComplexInteger,  // Integer complex type
+    eFormatComplexInteger   // Integer complex type
 
 } Format;
 
@@ -318,7 +318,7 @@
     eValueTypeVariableLocal     = 4,    // function local variables
     eValueTypeRegister          = 5,    // stack frame register value
     eValueTypeRegisterSet       = 6,    // A collection of stack frame register values
-    eValueTypeConstResult       = 7,    // constant result variables
+    eValueTypeConstResult       = 7     // constant result variables
 } ValueType;
 
 //----------------------------------------------------------------------
@@ -430,7 +430,7 @@
     eFunctionNameTypeBase       = (1u << 3),    // The function name only, no namespaces or arguments and no class 
                                                 // methods or selectors will be searched.
     eFunctionNameTypeMethod     = (1u << 4),    // Find function by method name (C++) with no namespace or arguments
-    eFunctionNameTypeSelector   = (1u << 5),    // Find function by selector name (ObjC) names
+    eFunctionNameTypeSelector   = (1u << 5)     // Find function by selector name (ObjC) names
 } FunctionNameType;
 
 
@@ -602,7 +602,7 @@
 {
     eSortOrderNone,
     eSortOrderByAddress,
-    eSortOrderByName,
+    eSortOrderByName
 } SortOrder;
 
 





More information about the lldb-commits mailing list