diff options
author | Jim Ingham <jingham@apple.com> | 2011-09-30 01:05:23 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-09-30 01:05:23 +0000 |
commit | 2af4db5835d41d545f80bcfbd94e7ff6dad381b6 (patch) | |
tree | bba17c41dc8480c6be401c532798283e0dfea567 | |
parent | efc761a1ebeca8670227668635e869ddd79983b5 (diff) | |
download | bcm5719-llvm-2af4db5835d41d545f80bcfbd94e7ff6dad381b6.tar.gz bcm5719-llvm-2af4db5835d41d545f80bcfbd94e7ff6dad381b6.zip |
Remember to mark the OptionValueUUID as set in SetOptionValue.
llvm-svn: 140835
-rw-r--r-- | lldb/source/Interpreter/OptionGroupUUID.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/OptionGroupUUID.cpp b/lldb/source/Interpreter/OptionGroupUUID.cpp index d009008b51f..c8f86c24b4e 100644 --- a/lldb/source/Interpreter/OptionGroupUUID.cpp +++ b/lldb/source/Interpreter/OptionGroupUUID.cpp @@ -57,6 +57,8 @@ OptionGroupUUID::SetOptionValue (CommandInterpreter &interpreter, { case 'u': error = m_uuid.SetValueFromCString (option_arg); + if (error.Success()) + m_uuid.SetOptionWasSet(); break; default: |