[lldb] Remove redundant ctor call (NFC)

As pointed out by Pavel in D88249.
This commit is contained in:
Jonas Devlieghere 2020-09-29 10:04:15 -07:00
parent d8ba6b4ab3
commit b4968c7001
1 changed files with 1 additions and 1 deletions

View File

@ -1356,7 +1356,7 @@ lldb::SBAddress SBValue::GetAddress() {
} }
} }
return LLDB_RECORD_RESULT(SBAddress(Address(addr))); return LLDB_RECORD_RESULT(SBAddress(addr));
} }
lldb::SBData SBValue::GetPointeeData(uint32_t item_idx, uint32_t item_count) { lldb::SBData SBValue::GetPointeeData(uint32_t item_idx, uint32_t item_count) {