[Lldb-commits] [PATCH] D151425: [lldb][nfc] Place comment in the right place

Felipe de Azevedo Piovezan via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu May 25 09:54:25 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG52b03b63972a: [lldb][nfc] Place comment in the right place (authored by fdeazeve).

Changed prior to commit:
  https://reviews.llvm.org/D151425?vs=525544&id=525679#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D151425/new/

https://reviews.llvm.org/D151425

Files:
  lldb/include/lldb/Utility/RangeMap.h


Index: lldb/include/lldb/Utility/RangeMap.h
===================================================================
--- lldb/include/lldb/Utility/RangeMap.h
+++ lldb/include/lldb/Utility/RangeMap.h
@@ -42,9 +42,9 @@
     size = 0;
   }
 
-  // Set the start value for the range, and keep the same size
   BaseType GetRangeBase() const { return base; }
 
+  /// Set the start value for the range, and keep the same size
   void SetRangeBase(BaseType b) { base = b; }
 
   void Slide(BaseType slide) { base += slide; }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D151425.525679.patch
Type: text/x-patch
Size: 513 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230525/27521a59/attachment.bin>


More information about the lldb-commits mailing list