diff options
Diffstat (limited to 'lldb/source/Interpreter/Property.cpp')
-rw-r--r-- | lldb/source/Interpreter/Property.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/Property.cpp b/lldb/source/Interpreter/Property.cpp index bef28f1bec5..369029bc570 100644 --- a/lldb/source/Interpreter/Property.cpp +++ b/lldb/source/Interpreter/Property.cpp @@ -194,7 +194,7 @@ Property::Property(const PropertyDefinition &definition) { UUID uuid; if (definition.default_cstr_value) - uuid.SetFromCString(definition.default_cstr_value); + uuid.SetFromStringRef(definition.default_cstr_value); m_value_sp.reset(new OptionValueUUID(uuid)); } break; |