diff options
author | Zachary Turner <zturner@google.com> | 2015-01-12 20:44:02 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-01-12 20:44:02 +0000 |
commit | 3e7442b6769571360b72e709c26c8534b293acc8 (patch) | |
tree | 168a48946dbc74a0f1c43b4cabd5332345a496e1 /lldb/source/Interpreter/OptionValueArray.cpp | |
parent | ffbadedcf9124d6937562880cfafa3668db93e43 (diff) | |
download | bcm5719-llvm-3e7442b6769571360b72e709c26c8534b293acc8.tar.gz bcm5719-llvm-3e7442b6769571360b72e709c26c8534b293acc8.zip |
Add support for character option types.
This will allow, in a subsequent patch, the addition of a global
setting that allows the user to specify a single character that
LLDB will recognize as an escape character when processing arg
strings to accomodate differences in Windows/non-Windows path
handling.
Differential Revision: http://reviews.llvm.org/D6887
Reviewed by: Jim Ingham
llvm-svn: 225694
Diffstat (limited to 'lldb/source/Interpreter/OptionValueArray.cpp')
-rw-r--r-- | lldb/source/Interpreter/OptionValueArray.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/OptionValueArray.cpp b/lldb/source/Interpreter/OptionValueArray.cpp index 769aadd7b30..82ac74555b6 100644 --- a/lldb/source/Interpreter/OptionValueArray.cpp +++ b/lldb/source/Interpreter/OptionValueArray.cpp @@ -53,6 +53,7 @@ OptionValueArray::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint break; case eTypeBoolean: + case eTypeChar: case eTypeEnum: case eTypeFileSpec: case eTypeFormat: |