diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-09 08:45:26 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-09 08:45:26 +0000 |
commit | 0a0739743312c3160f25b17d3477cdd376cb32d5 (patch) | |
tree | 0327b9a51f60d11c963779619ba5bd46adf1be8a | |
parent | eb122f2baf4886bc978826b9c1136b1a494136eb (diff) | |
download | bcm5719-llvm-0a0739743312c3160f25b17d3477cdd376cb32d5.tar.gz bcm5719-llvm-0a0739743312c3160f25b17d3477cdd376cb32d5.zip |
[lldb-mi] Remove unused typedefs.
Summary: [lldb-mi] Remove unused typedefs.
Reviewers: abidh, ki.stfu
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D11050
llvm-svn: 241791
-rw-r--r-- | lldb/tools/lldb-mi/MIDataTypes.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/tools/lldb-mi/MIDataTypes.h b/lldb/tools/lldb-mi/MIDataTypes.h index b0583343ab3..33c5b20095d 100644 --- a/lldb/tools/lldb-mi/MIDataTypes.h +++ b/lldb/tools/lldb-mi/MIDataTypes.h @@ -51,18 +51,14 @@ const bool failure = false; // Portability issues #ifdef _WIN64 typedef unsigned __int64 size_t; -typedef unsigned __int64 PointerToInteger_t; typedef __int64 MIint; typedef unsigned __int64 MIuint; #else #ifdef _WIN32 typedef unsigned int size_t; -typedef unsigned int PointerToInteger_t; typedef int MIint; typedef unsigned int MIuint; #else -// typedef long unsigned int size_t; // size_t already defined -typedef unsigned int PointerToInteger_t; typedef int MIint; typedef unsigned int MIuint; @@ -74,8 +70,6 @@ typedef unsigned int MIuint; // Common types: // Fundamentals: -typedef float MIflt; -typedef double MIdbl; typedef long long MIint64; // 64bit signed integer. typedef unsigned long long MIuint64; // 64bit unsigned integer. |