diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-11-04 08:35:56 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-11-04 08:35:56 +0100 |
commit | 80bf88d8bc892548aa59286306b6a1d9072a9f7a (patch) | |
tree | ab895f251fd413bc87e43eadf69060d5806e25e3 /lldb/source/Core | |
parent | 8d7ccb37440e11552cb4a0bb989ddee5031700a4 (diff) | |
download | bcm5719-llvm-80bf88d8bc892548aa59286306b6a1d9072a9f7a.tar.gz bcm5719-llvm-80bf88d8bc892548aa59286306b6a1d9072a9f7a.zip |
[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
Diffstat (limited to 'lldb/source/Core')
-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; |