The correct max value for size_t variables is SIZE_MAX not UINT64_MAX.  Removes lots of warnings when building on 32 bit hosts.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@186168 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/lldb/Interpreter/CommandHistory.h b/include/lldb/Interpreter/CommandHistory.h
index 5faaf1c..dbe6e99 100644
--- a/include/lldb/Interpreter/CommandHistory.h
+++ b/include/lldb/Interpreter/CommandHistory.h
@@ -59,7 +59,7 @@
     void
     Dump (Stream& stream,
           size_t start_idx = 0,
-          size_t stop_idx = UINT64_MAX) const;
+          size_t stop_idx = SIZE_MAX) const;
     
     static const char g_repeat_char = '!';