diff options
author | Greg Clayton <gclayton@apple.com> | 2013-03-14 18:31:44 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-03-14 18:31:44 +0000 |
commit | faac1118702d8fa7bbd639d23a2c9f79e4db2f0c (patch) | |
tree | ac277bdce3db205dab200956a7a23f09fdf9899f /lldb/source/Core/ValueObjectDynamicValue.cpp | |
parent | 29a0da3551afa5cc9c172c7057d255eae8df0e83 (diff) | |
download | bcm5719-llvm-faac1118702d8fa7bbd639d23a2c9f79e4db2f0c.tar.gz bcm5719-llvm-faac1118702d8fa7bbd639d23a2c9f79e4db2f0c.zip |
<rdar://problem/13421412>
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
Diffstat (limited to 'lldb/source/Core/ValueObjectDynamicValue.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectDynamicValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObjectDynamicValue.cpp b/lldb/source/Core/ValueObjectDynamicValue.cpp index 06a7eedc349..a90ef0286fb 100644 --- a/lldb/source/Core/ValueObjectDynamicValue.cpp +++ b/lldb/source/Core/ValueObjectDynamicValue.cpp @@ -106,7 +106,7 @@ ValueObjectDynamicValue::GetClangASTImpl () return m_parent->GetClangAST (); } -size_t +uint64_t ValueObjectDynamicValue::GetByteSize() { const bool success = UpdateValueIfNeeded(false); |