commit | efe8e7e36d01cfa19b8c405fffc3411c8c74cabf | [log] [tgz] |
---|---|---|
author | Fangrui Song <maskray@google.com> | Tue May 14 08:55:50 2019 +0000 |
committer | Fangrui Song <maskray@google.com> | Tue May 14 08:55:50 2019 +0000 |
tree | c606cbe8c4fbe0121d85b6d1e02ca27ed505fdf4 | |
parent | 004393681c25e34e921adccc69ae6378090dee54 [diff] [blame] |
typedef enum -> enum Reviewed By: labath Differential Revision: https://reviews.llvm.org/D61883 llvm-svn: 360654
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h index e3dc9d2..bb777a5 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
@@ -29,14 +29,14 @@ namespace lldb_private { namespace process_gdb_remote { -typedef enum { +enum GDBStoppointType { eStoppointInvalid = -1, eBreakpointSoftware = 0, eBreakpointHardware, eWatchpointWrite, eWatchpointRead, eWatchpointReadWrite -} GDBStoppointType; +}; enum class CompressionType { None = 0, // no compression