fdeazeve created this revision. Herald added a project: All. fdeazeve requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits.
This line has been misplaced since it was introduced in 2011 by c26e4454035a4160cffc3c865cf83be194ca38c4. Repository: rG LLVM Github Monorepo 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; }
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; }
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits