diff options
author | Enrico Granata <egranata@apple.com> | 2016-09-26 21:36:17 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-09-26 21:36:17 +0000 |
commit | 543a26e958e0667143d2866f6cda5d3947c0c7c3 (patch) | |
tree | c848c87c8b42eaf18dc47b8cd7f184c61f6018a2 /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | 2b9008e5e58f7e19a3dde38520529ba15db81aeb (diff) | |
download | llvm-543a26e958e0667143d2866f6cda5d3947c0c7c3.zip llvm-543a26e958e0667143d2866f6cda5d3947c0c7c3.tar.gz llvm-543a26e958e0667143d2866f6cda5d3947c0c7c3.tar.bz2 |
Fix an issue where LLDB would not accept the --description-verbosity option to 'po' without an argument after the StringRef refactoring
Fixes rdar://28480275
llvm-svn: 282445
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index cdda76b..b0f7352 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -142,7 +142,7 @@ Error CommandObjectExpression::CommandOptions::SetOptionValue( } case 'v': - if (!option_arg.empty()) { + if (option_arg.empty()) { m_verbosity = eLanguageRuntimeDescriptionDisplayVerbosityFull; break; } |