aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/API/SBValue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/API/SBValue.cpp')
-rw-r--r--lldb/source/API/SBValue.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp
index 20581cfabdd6..f9e03172a4d0 100644
--- a/lldb/source/API/SBValue.cpp
+++ b/lldb/source/API/SBValue.cpp
@@ -69,9 +69,7 @@ public:
}
}
- ValueImpl(const ValueImpl &rhs)
- : m_valobj_sp(rhs.m_valobj_sp), m_use_dynamic(rhs.m_use_dynamic),
- m_use_synthetic(rhs.m_use_synthetic), m_name(rhs.m_name) {}
+ ValueImpl(const ValueImpl &rhs) = default;
ValueImpl &operator=(const ValueImpl &rhs) {
if (this != &rhs) {
@@ -332,7 +330,7 @@ size_t SBValue::GetByteSize() {
ValueLocker locker;
lldb::ValueObjectSP value_sp(GetSP(locker));
if (value_sp) {
- result = value_sp->GetByteSize().getValueOr(0);
+ result = value_sp->GetByteSize().value_or(0);
}
return result;