[Lldb-commits] [PATCH] D11050: [lldb-mi] Remove unused typedefs.

Bruce Mitchener bruce.mitchener at gmail.com
Thu Jul 9 01:45:49 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL241791: [lldb-mi] Remove unused typedefs. (authored by brucem).

Changed prior to commit:
  http://reviews.llvm.org/D11050?vs=29300&id=29303#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D11050

Files:
  lldb/trunk/tools/lldb-mi/MIDataTypes.h

Index: lldb/trunk/tools/lldb-mi/MIDataTypes.h
===================================================================
--- lldb/trunk/tools/lldb-mi/MIDataTypes.h
+++ lldb/trunk/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.29303.patch
Type: text/x-patch
Size: 946 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150709/b1e7ee6a/attachment.bin>


More information about the lldb-commits mailing list