From b4968c7001c2d7e2e607bef1bb11ae8f076e47e0 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Tue, 29 Sep 2020 10:04:15 -0700 Subject: [PATCH] [lldb] Remove redundant ctor call (NFC) As pointed out by Pavel in D88249. --- lldb/source/API/SBValue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp index 63518b4c4e3e..0a95cf41263d 100644 --- a/lldb/source/API/SBValue.cpp +++ b/lldb/source/API/SBValue.cpp @@ -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) {