diff options
Diffstat (limited to 'lldb/source/Core/Value.cpp')
-rw-r--r-- | lldb/source/Core/Value.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Value.cpp b/lldb/source/Core/Value.cpp index 3124b9338b3..aa713d58dac 100644 --- a/lldb/source/Core/Value.cpp +++ b/lldb/source/Core/Value.cpp @@ -507,10 +507,10 @@ Status Value::GetValueAsData(ExecutionContext *exe_ctx, DataExtractor &data, return error; } - // If we got here, we need to read the value from memory + // If we got here, we need to read the value from memory. size_t byte_size = GetValueByteSize(&error, exe_ctx); - // Bail if we encountered any errors getting the byte size + // Bail if we encountered any errors getting the byte size. if (error.Fail()) return error; |