diff options
author | Fangrui Song <maskray@google.com> | 2019-05-14 08:55:50 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-05-14 08:55:50 +0000 |
commit | efe8e7e36d01cfa19b8c405fffc3411c8c74cabf (patch) | |
tree | c606cbe8c4fbe0121d85b6d1e02ca27ed505fdf4 /lldb/tools/debugserver/source/DNBDataRef.h | |
parent | 004393681c25e34e921adccc69ae6378090dee54 (diff) | |
download | bcm5719-llvm-efe8e7e36d01cfa19b8c405fffc3411c8c74cabf.tar.gz bcm5719-llvm-efe8e7e36d01cfa19b8c405fffc3411c8c74cabf.zip |
typedef enum -> enum
Reviewed By: labath
Differential Revision: https://reviews.llvm.org/D61883
llvm-svn: 360654
Diffstat (limited to 'lldb/tools/debugserver/source/DNBDataRef.h')
-rw-r--r-- | lldb/tools/debugserver/source/DNBDataRef.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/DNBDataRef.h b/lldb/tools/debugserver/source/DNBDataRef.h index ecba580fbde..d521700d151 100644 --- a/lldb/tools/debugserver/source/DNBDataRef.h +++ b/lldb/tools/debugserver/source/DNBDataRef.h @@ -31,7 +31,7 @@ class DNBDataRef { public: // For use with Dump - typedef enum { + enum Type { TypeUInt8 = 0, TypeChar, TypeUInt16, @@ -40,7 +40,7 @@ public: TypePointer, TypeULEB128, TypeSLEB128 - } Type; + }; typedef uint32_t offset_t; typedef nub_addr_t addr_t; |