This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from b36b4786b Fix compilation error caused by tgmath.h. new b242a52f9 Move Args::StringTo*** functions to a new OptionArgParser class
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Interpreter/Args.h | 26 --- include/lldb/Interpreter/OptionArgParser.h | 43 ++++ include/lldb/Interpreter/Options.h | 1 + source/API/SBDebugger.cpp | 5 +- source/Commands/CommandObjectBreakpoint.cpp | 27 +-- source/Commands/CommandObjectBreakpointCommand.cpp | 6 +- source/Commands/CommandObjectCommands.cpp | 3 +- source/Commands/CommandObjectDisassemble.cpp | 11 +- source/Commands/CommandObjectExpression.cpp | 15 +- source/Commands/CommandObjectLog.cpp | 3 +- source/Commands/CommandObjectMemory.cpp | 27 +-- source/Commands/CommandObjectProcess.cpp | 5 +- source/Commands/CommandObjectSource.cpp | 9 +- source/Commands/CommandObjectTarget.cpp | 15 +- source/Commands/CommandObjectThread.cpp | 22 +- source/Commands/CommandObjectType.cpp | 9 +- source/Commands/CommandObjectWatchpointCommand.cpp | 6 +- source/Interpreter/Args.cpp | 242 +------------------- source/Interpreter/CMakeLists.txt | 1 + source/Interpreter/OptionArgParser.cpp | 253 +++++++++++++++++++++ .../Interpreter/OptionGroupValueObjectDisplay.cpp | 9 +- source/Interpreter/OptionGroupWatchpoint.cpp | 6 +- source/Interpreter/OptionValueBoolean.cpp | 4 +- source/Interpreter/OptionValueChar.cpp | 4 +- source/Interpreter/OptionValueFormat.cpp | 4 +- source/Interpreter/Property.cpp | 10 +- .../ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp | 3 +- .../Process/Utility/DynamicRegisterInfo.cpp | 4 +- .../GDBRemoteCommunicationServerCommon.cpp | 4 +- .../Process/gdb-remote/ProcessGDBRemote.cpp | 5 +- .../DarwinLog/StructuredDataDarwinLog.cpp | 10 +- source/Target/Process.cpp | 6 +- unittests/Interpreter/CMakeLists.txt | 1 + unittests/Interpreter/TestArgs.cpp | 89 -------- unittests/Interpreter/TestOptionArgParser.cpp | 121 ++++++++++ 35 files changed, 555 insertions(+), 454 deletions(-) create mode 100644 include/lldb/Interpreter/OptionArgParser.h create mode 100644 source/Interpreter/OptionArgParser.cpp create mode 100644 unittests/Interpreter/TestOptionArgParser.cpp