Author: zturner
Date: Fri Mar 17 11:32:43 2017
New Revision: 298099

URL: http://llvm.org/viewvc/llvm-project?rev=298099&view=rev
Log:
Fix some signed/unsigned comparison warnings.

Patch by Hugh Bellamy
Differential Revision: https://reviews.llvm.org/D30926

Modified:
    lldb/trunk/source/Core/FormatEntity.cpp

Modified: lldb/trunk/source/Core/FormatEntity.cpp
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/FormatEntity.cpp?rev=298099&r1=298098&r2=298099&view=diff
==============================================================================
--- lldb/trunk/source/Core/FormatEntity.cpp (original)
+++ lldb/trunk/source/Core/FormatEntity.cpp Fri Mar 17 11:32:43 2017
@@ -64,14 +64,14 @@ enum FileKind { FileError = 0, Basename,
 #define ENTRY_CHILDREN(n, t, f, c)                                             
\
   {                                                                            
\
     n, nullptr, FormatEntity::Entry::Type::t,                                  
\
-        FormatEntity::Entry::FormatType::f, 0, llvm::array_lengthof(c), c,     
\
-        false                                                                  
\
+        FormatEntity::Entry::FormatType::f, 0,                                 
\
+        static_cast<uint32_t>(llvm::array_lengthof(c)), c, false               
\
   }
 #define ENTRY_CHILDREN_KEEP_SEP(n, t, f, c)                                    
\
   {                                                                            
\
     n, nullptr, FormatEntity::Entry::Type::t,                                  
\
-        FormatEntity::Entry::FormatType::f, 0, llvm::array_lengthof(c), c,     
\
-        true                                                                   
\
+        FormatEntity::Entry::FormatType::f, 0,                                 
\
+        static_cast<uint32_t>(llvm::array_lengthof(c)), c, true                
\
   }
 #define ENTRY_STRING(n, s)                                                     
\
   {                                                                            
\


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to