Commit 80bf88d8 authored by Raphael Isemann's avatar Raphael Isemann
Browse files

[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
parent 8d7ccb37
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;