mirror of
https://github.com/intel/llvm.git
synced 2026-01-14 20:10:50 +08:00
[lldb] Remove LLDB_RECORD_RESULT macro
This commit is contained in:
@@ -37,7 +37,7 @@ const SBEnvironment &SBEnvironment::operator=(const SBEnvironment &rhs) {
|
||||
|
||||
if (this != &rhs)
|
||||
m_opaque_up = clone(rhs.m_opaque_up);
|
||||
return LLDB_RECORD_RESULT(*this);
|
||||
return *this;
|
||||
}
|
||||
|
||||
size_t SBEnvironment::GetNumValues() {
|
||||
@@ -101,7 +101,7 @@ SBStringList SBEnvironment::GetEntries() {
|
||||
for (const auto &KV : *m_opaque_up) {
|
||||
entries.AppendString(Environment::compose(KV).c_str());
|
||||
}
|
||||
return LLDB_RECORD_RESULT(entries);
|
||||
return entries;
|
||||
}
|
||||
|
||||
void SBEnvironment::PutEntry(const char *name_and_value) {
|
||||
|
||||
Reference in New Issue
Block a user