diff options
Diffstat (limited to 'lldb/source/Interpreter/OptionValueChar.cpp')
| -rw-r--r-- | lldb/source/Interpreter/OptionValueChar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/OptionValueChar.cpp b/lldb/source/Interpreter/OptionValueChar.cpp index 27684a27264..21fe8801472 100644 --- a/lldb/source/Interpreter/OptionValueChar.cpp +++ b/lldb/source/Interpreter/OptionValueChar.cpp @@ -13,7 +13,7 @@ // C++ Includes // Other libraries and framework includes // Project includes -#include "lldb/Interpreter/Args.h" +#include "lldb/Interpreter/OptionArgParser.h" #include "lldb/Utility/Stream.h" #include "lldb/Utility/StringList.h" #include "llvm/ADT/STLExtras.h" @@ -47,7 +47,7 @@ Status OptionValueChar::SetValueFromString(llvm::StringRef value, case eVarSetOperationReplace: case eVarSetOperationAssign: { bool success = false; - char char_value = Args::StringToChar(value, '\0', &success); + char char_value = OptionArgParser::ToChar(value, '\0', &success); if (success) { m_current_value = char_value; m_value_was_set = true; |

