This revision was automatically updated to reflect the committed changes.
Closed by commit rL298099: Fix some signed/unsigned comparison warnings. 
(authored by zturner).

Changed prior to commit:
  https://reviews.llvm.org/D30926?vs=91670&id=92156#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D30926

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


Index: lldb/trunk/source/Core/FormatEntity.cpp
===================================================================
--- lldb/trunk/source/Core/FormatEntity.cpp
+++ lldb/trunk/source/Core/FormatEntity.cpp
@@ -64,14 +64,14 @@
 #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)                                                     
\
   {                                                                            
\


Index: lldb/trunk/source/Core/FormatEntity.cpp
===================================================================
--- lldb/trunk/source/Core/FormatEntity.cpp
+++ lldb/trunk/source/Core/FormatEntity.cpp
@@ -64,14 +64,14 @@
 #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