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

llvm-svn: 186168
This commit is contained in:
Jim Ingham 2013-07-12 16:16:44 +00:00
parent 525121f9b6
commit 41eec7e475
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public:
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 = '!';