[Lldb-commits] [lldb] 80bf88d - [lldb] Add trailing dots to comments in Value.cpp
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Sun Nov 3 23:37:14 PST 2019
Author: Raphael Isemann
Date: 2019-11-04T08:35:56+01:00
New Revision: 80bf88d8bc892548aa59286306b6a1d9072a9f7a
URL: https://github.com/llvm/llvm-project/commit/80bf88d8bc892548aa59286306b6a1d9072a9f7a
DIFF: https://github.com/llvm/llvm-project/commit/80bf88d8bc892548aa59286306b6a1d9072a9f7a.diff
LOG: [lldb] Add trailing dots to comments in Value.cpp
Reviewers: JDevlieghere
Reviewed By: JDevlieghere
Subscribers: JDevlieghere, lldb-commits
Tags: #upstreaming_lldb_s_downstream_patches, #lldb
Differential Revision: https://reviews.llvm.org/D69717
Added:
Modified:
lldb/source/Core/Value.cpp
Removed:
################################################################################
diff --git a/lldb/source/Core/Value.cpp b/lldb/source/Core/Value.cpp
index 3124b9338b36..aa713d58dace 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;
More information about the lldb-commits
mailing list