From faac1118702d8fa7bbd639d23a2c9f79e4db2f0c Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 14 Mar 2013 18:31:44 +0000 Subject: Many "byte size" members and variables were using a mixture of uint32_t and size_t. Switching over to using uint64_t everywhere. llvm-svn: 177091 --- lldb/source/Core/ValueObject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Core/ValueObject.cpp') diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 7891c26fafb..fb3c9b3c06c 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -998,7 +998,7 @@ ValueObject::GetPointeeData (DataExtractor& data, return 0; } -size_t +uint64_t ValueObject::GetData (DataExtractor& data) { UpdateValueIfNeeded(false); @@ -1717,7 +1717,7 @@ ValueObject::SetValueFromCString (const char *value_str, Error& error) return false; } - uint32_t count = 0; + uint64_t count = 0; Encoding encoding = ClangASTType::GetEncoding (GetClangType(), count); const size_t byte_size = GetByteSize(); -- cgit v1.2.3