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

Eli Friedman eli.friedman at gmail.com
Tue Jun 8 23:55:49 PDT 2010


Author: efriedma
Date: Wed Jun  9 01:55:48 2010
New Revision: 105691

URL: http://llvm.org/viewvc/llvm-project?rev=105691&view=rev
Log:
Minor warning fixes.


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=105691&r1=105690&r2=105691&view=diff
==============================================================================
--- lldb/trunk/include/lldb/lldb-enumerations.h (original)
+++ lldb/trunk/include/lldb/lldb-enumerations.h Wed Jun  9 01:55:48 2010
@@ -130,7 +130,7 @@
     eFormatVectorOfUInt64,
     eFormatVectorOfFloat32,
     eFormatVectorOfFloat64,
-    eFormatVectorOfUInt128,
+    eFormatVectorOfUInt128
 
 } Format;
 
@@ -189,7 +189,7 @@
 {
     eVoteNo         = -1,
     eVoteNoOpinion  =  0,
-    eVoteYes        =  1,
+    eVoteYes        =  1
 } Vote;
 
 //----------------------------------------------------------------------
@@ -289,7 +289,7 @@
     eInputReaderGranularityByte,
     eInputReaderGranularityWord,
     eInputReaderGranularityLine,
-    eInputReaderGranularityAll,
+    eInputReaderGranularityAll
 } InputReaderGranularity;
 
 //------------------------------------------------------------------
@@ -319,7 +319,7 @@
     ePermissionsWritable = (1 << 0),
     ePermissionsReadable = (1 << 1),
     ePermissionsExecutable = (1 << 2)
-};
+} Permissions;
 
 typedef enum SectionType
 {
@@ -349,7 +349,7 @@
     eInputReaderReactivate, // reader is on top of the stack again after another reader was popped off 
     eInputReaderDeactivate, // another reader was pushed on the stack 
     eInputReaderGotToken,   // reader got one of its tokens (granularity)
-    eInputReaderDone,       // reader was just popped off the stack and is done
+    eInputReaderDone        // reader was just popped off the stack and is done
 } InputReaderAction;
 
 } // namespace lldb





More information about the lldb-commits mailing list