summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/DataExtractor.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-01-25 23:55:37 +0000
committerGreg Clayton <gclayton@apple.com>2011-01-25 23:55:37 +0000
commit1a65ae11bd65d007391473f8bde3d06f4abad740 (patch)
tree12bcbcdd2564d2bf305c3642ebe3a0b80128beb7 /lldb/source/Core/DataExtractor.cpp
parent3ae681eb1240f09af37936663760526ed1b324cf (diff)
downloadbcm5719-llvm-1a65ae11bd65d007391473f8bde3d06f4abad740.tar.gz
bcm5719-llvm-1a65ae11bd65d007391473f8bde3d06f4abad740.zip
Enabled extra warnings and fixed a bunch of small issues.
llvm-svn: 124250
Diffstat (limited to 'lldb/source/Core/DataExtractor.cpp')
-rw-r--r--lldb/source/Core/DataExtractor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/DataExtractor.cpp b/lldb/source/Core/DataExtractor.cpp
index e6c8a4dcd0d..2c805417432 100644
--- a/lldb/source/Core/DataExtractor.cpp
+++ b/lldb/source/Core/DataExtractor.cpp
@@ -1253,7 +1253,7 @@ DataExtractor::Dump
// earlier C++ libraries
std::string binary_value(64, '0');
std::bitset<64> bits(uval64);
- for (size_t i = 0; i < 64; ++i)
+ for (i = 0; i < 64; ++i)
if (bits[i])
binary_value[64 - 1 - i] = '1';
if (item_bit_size > 0)
OpenPOWER on IntegriCloud