This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 5de4018 Fix compiler warnings where two values weren't being initialized. new 6813369 Convert many functions to use StringRefs.
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/Breakpoint/BreakpointID.h | 5 +- include/lldb/Interpreter/Args.h | 5 +- include/lldb/Target/Language.h | 2 +- source/Breakpoint/Breakpoint.cpp | 2 +- source/Breakpoint/BreakpointID.cpp | 21 +++++--- source/Breakpoint/BreakpointIDList.cpp | 3 +- source/Breakpoint/BreakpointResolverName.cpp | 2 +- source/Commands/CommandObjectBreakpoint.cpp | 11 +++-- source/Interpreter/Args.cpp | 44 +++++++---------- source/Interpreter/OptionGroupPlatform.cpp | 6 +-- source/Interpreter/OptionValueLanguage.cpp | 2 +- source/Interpreter/Property.cpp | 3 +- source/Plugins/Platform/MacOSX/PlatformDarwin.cpp | 32 +++++++++---- source/Plugins/Platform/MacOSX/PlatformDarwin.h | 8 +++- .../Platform/MacOSX/PlatformRemoteAppleTV.cpp | 15 ++---- .../Platform/MacOSX/PlatformRemoteAppleWatch.cpp | 15 ++---- .../Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp | 15 ++---- .../gdb-remote/GDBRemoteCommunicationClient.cpp | 4 +- source/Target/Language.cpp | 13 +++-- unittests/Breakpoint/BreakpointIDTest.cpp | 30 ++++++++++++ unittests/Breakpoint/CMakeLists.txt | 3 ++ unittests/CMakeLists.txt | 2 + unittests/Interpreter/TestArgs.cpp | 4 +- unittests/Platform/CMakeLists.txt | 3 ++ unittests/Platform/PlatformDarwinTest.cpp | 56 ++++++++++++++++++++++ 25 files changed, 207 insertions(+), 99 deletions(-) create mode 100644 unittests/Breakpoint/BreakpointIDTest.cpp create mode 100644 unittests/Breakpoint/CMakeLists.txt create mode 100644 unittests/Platform/CMakeLists.txt create mode 100644 unittests/Platform/PlatformDarwinTest.cpp