diff options
Diffstat (limited to 'contrib/llvm-project/lldb/source/Core/UserSettingsController.cpp')
| -rw-r--r-- | contrib/llvm-project/lldb/source/Core/UserSettingsController.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/llvm-project/lldb/source/Core/UserSettingsController.cpp b/contrib/llvm-project/lldb/source/Core/UserSettingsController.cpp index f5dd926cf050..72217117557f 100644 --- a/contrib/llvm-project/lldb/source/Core/UserSettingsController.cpp +++ b/contrib/llvm-project/lldb/source/Core/UserSettingsController.cpp @@ -30,6 +30,13 @@ class Property; using namespace lldb; using namespace lldb_private; +Properties::Properties() = default; + +Properties::Properties(const lldb::OptionValuePropertiesSP &collection_sp) + : m_collection_sp(collection_sp) {} + +Properties::~Properties() = default; + lldb::OptionValueSP Properties::GetPropertyValue(const ExecutionContext *exe_ctx, llvm::StringRef path, Status &error) const { |
