aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectExpression.cpp
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2016-09-26 21:36:17 +0000
committerEnrico Granata <egranata@apple.com>2016-09-26 21:36:17 +0000
commit543a26e958e0667143d2866f6cda5d3947c0c7c3 (patch)
treec848c87c8b42eaf18dc47b8cd7f184c61f6018a2 /lldb/source/Commands/CommandObjectExpression.cpp
parent2b9008e5e58f7e19a3dde38520529ba15db81aeb (diff)
downloadllvm-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.cpp2
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;
}