[Lldb-commits] [lldb] r138385 - in /lldb/trunk/include/lldb: Target/StackFrame.h lldb-private-enumerations.h

Enrico Granata granata.enrico at gmail.com
Tue Aug 23 14:29:50 PDT 2011


Author: enrico
Date: Tue Aug 23 16:29:50 2011
New Revision: 138385

URL: http://llvm.org/viewvc/llvm-project?rev=138385&view=rev
Log:
Fixing commas in enums (build breaker on GCC) as reported by Filipe Cabecinhas

Modified:
    lldb/trunk/include/lldb/Target/StackFrame.h
    lldb/trunk/include/lldb/lldb-private-enumerations.h

Modified: lldb/trunk/include/lldb/Target/StackFrame.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/StackFrame.h?rev=138385&r1=138384&r2=138385&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/StackFrame.h (original)
+++ lldb/trunk/include/lldb/Target/StackFrame.h Tue Aug 23 16:29:50 2011
@@ -35,7 +35,7 @@
         eExpressionPathOptionCheckPtrVsMember       = (1u << 0),
         eExpressionPathOptionsNoFragileObjcIvar     = (1u << 1),
         eExpressionPathOptionsNoSyntheticChildren   = (1u << 2),
-        eExpressionPathOptionsNoSyntheticArrayRange = (1u << 3),
+        eExpressionPathOptionsNoSyntheticArrayRange = (1u << 3)
     };
     //------------------------------------------------------------------
     // Constructors and Destructors

Modified: lldb/trunk/include/lldb/lldb-private-enumerations.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/lldb-private-enumerations.h?rev=138385&r1=138384&r2=138385&view=diff
==============================================================================
--- lldb/trunk/include/lldb/lldb-private-enumerations.h (original)
+++ lldb/trunk/include/lldb/lldb-private-enumerations.h Tue Aug 23 16:29:50 2011
@@ -211,7 +211,7 @@
     eFormatCategoryItemFilter =          0x0004,
     eFormatCategoryItemRegexFilter =     0x0008,
     eFormatCategoryItemSynth =           0x0010,
-    eFormatCategoryItemRegexSynth =      0x0020,
+    eFormatCategoryItemRegexSynth =      0x0020
 } FormatCategoryItem;
 
 } // namespace lldb





More information about the lldb-commits mailing list