diff options
author | Zachary Turner <zturner@google.com> | 2016-11-16 21:45:04 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-11-16 21:45:04 +0000 |
commit | 067d1db139b6f9d32f8cce8f5af8319613d523c1 (patch) | |
tree | 59853a98fcc5e79e8db7602011a19cfb08f32ec3 /lldb/source/Core/UserSettingsController.cpp | |
parent | 7a74803abf1423854792987492fe25e975bae9f8 (diff) | |
download | bcm5719-llvm-067d1db139b6f9d32f8cce8f5af8319613d523c1.tar.gz bcm5719-llvm-067d1db139b6f9d32f8cce8f5af8319613d523c1.zip |
Make Apropos functions accept StringRefs.
llvm-svn: 287157
Diffstat (limited to 'lldb/source/Core/UserSettingsController.cpp')
-rw-r--r-- | lldb/source/Core/UserSettingsController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/UserSettingsController.cpp b/lldb/source/Core/UserSettingsController.cpp index 0910f400296..00fbc4b8a9b 100644 --- a/lldb/source/Core/UserSettingsController.cpp +++ b/lldb/source/Core/UserSettingsController.cpp @@ -73,7 +73,7 @@ Error Properties::DumpPropertyValue(const ExecutionContext *exe_ctx, } size_t -Properties::Apropos(const char *keyword, +Properties::Apropos(llvm::StringRef keyword, std::vector<const Property *> &matching_properties) const { OptionValuePropertiesSP properties_sp(GetValueProperties()); if (properties_sp) { |