[Lldb-commits] [PATCH] D11050: [lldb-mi] Remove unused typedefs.
Bruce Mitchener
bruce.mitchener at gmail.com
Wed Jul 8 22:09:30 PDT 2015
brucem created this revision.
brucem added reviewers: abidh, ki.stfu.
brucem added a subscriber: lldb-commits.
[lldb-mi] Remove unused typedefs.
http://reviews.llvm.org/D11050
Files:
tools/lldb-mi/MIDataTypes.h
Index: tools/lldb-mi/MIDataTypes.h
===================================================================
--- tools/lldb-mi/MIDataTypes.h
+++ tools/lldb-mi/MIDataTypes.h
@@ -51,18 +51,14 @@
// 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 @@
// Common types:
// Fundamentals:
-typedef float MIflt;
-typedef double MIdbl;
typedef long long MIint64; // 64bit signed integer.
typedef unsigned long long MIuint64; // 64bit unsigned integer.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11050.29300.patch
Type: text/x-patch
Size: 913 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150709/abf2dadc/attachment.bin>
More information about the lldb-commits
mailing list