[Lldb-commits] [lldb] Add new Python API `SBCommandInterpreter::GetTranscript()` (PR #90703)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Thu May 2 11:26:30 PDT 2024
================
@@ -366,10 +396,10 @@ class StructuredData {
class String : public Object {
public:
String() : Object(lldb::eStructuredDataTypeString) {}
- explicit String(llvm::StringRef S)
- : Object(lldb::eStructuredDataTypeString), m_value(S) {}
+ explicit String(llvm::StringRef s)
+ : Object(lldb::eStructuredDataTypeString), m_value(s) {}
- void SetValue(llvm::StringRef S) { m_value = std::string(S); }
+ void SetValue(llvm::StringRef s) { m_value = std::string(s); }
----------------
bulbazord wrote:
The changes to adjust the name of the variable are unnecessary and make it harder to navigate commit history. Please revert it.
https://github.com/llvm/llvm-project/pull/90703
More information about the lldb-commits
mailing list