aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h')
-rw-r--r--contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h b/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
index 7b762bf6b309..38773525c8db 100644
--- a/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
+++ b/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
@@ -39,11 +39,10 @@ public:
SetValueFromString(const char *,
VarSetOperationType = eVarSetOperationAssign) = delete;
- bool Clear() override {
+ void Clear() override {
std::lock_guard<std::recursive_mutex> lock(m_mutex);
m_current_value.Clear();
m_value_was_set = false;
- return true;
}
lldb::OptionValueSP DeepCopy() const override;