summaryrefslogtreecommitdiff
path: root/include/lldb/Interpreter/Property.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Interpreter/Property.h')
-rw-r--r--include/lldb/Interpreter/Property.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/lldb/Interpreter/Property.h b/include/lldb/Interpreter/Property.h
index 9d0dc5fa0fd8..a7515e9903a4 100644
--- a/include/lldb/Interpreter/Property.h
+++ b/include/lldb/Interpreter/Property.h
@@ -28,10 +28,12 @@ struct PropertyDefinition {
bool global; // false == this setting is a global setting by default
uintptr_t default_uint_value;
const char *default_cstr_value;
- OptionEnumValueElement *enum_values;
+ OptionEnumValues enum_values;
const char *description;
};
+using PropertyDefinitions = llvm::ArrayRef<PropertyDefinition>;
+
class Property {
public:
Property(const PropertyDefinition &definition);