[Lldb-commits] [lldb] r242768 - [lldb-mi] Remove unused portions of MIDataTypes.h.
Bruce Mitchener
bruce.mitchener at gmail.com
Tue Jul 21 04:27:40 PDT 2015
Author: brucem
Date: Tue Jul 21 06:27:40 2015
New Revision: 242768
URL: http://llvm.org/viewvc/llvm-project?rev=242768&view=rev
Log:
[lldb-mi] Remove unused portions of MIDataTypes.h.
Reviewers: abidh, ki.stfu
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D11385
Modified:
lldb/trunk/tools/lldb-mi/MIDataTypes.h
Modified: lldb/trunk/tools/lldb-mi/MIDataTypes.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MIDataTypes.h?rev=242768&r1=242767&r2=242768&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MIDataTypes.h (original)
+++ lldb/trunk/tools/lldb-mi/MIDataTypes.h Tue Jul 21 06:27:40 2015
@@ -39,15 +39,6 @@ const bool failure = false;
// Use to avoid "unused parameter" compiler warnings:
#define MIunused(x) (void) x;
-#ifdef _WIN32
-#define MI_NO_INITIALIZE_VTABLE __declspec(novtable)
-#define MI_FORCE_INLINE __forceinline
-#else
-#define MI_NO_INITIALIZE_VTABLE
-#define MI_FORCE_INLINE inline
-// __attribute__( ( always_inline ) )
-#endif // _WIN32
-
// Portability issues
#ifdef _WIN64
typedef unsigned __int64 size_t;
@@ -72,10 +63,3 @@ typedef unsigned int MIuint;
// Fundamentals:
typedef long long MIint64; // 64bit signed integer.
typedef unsigned long long MIuint64; // 64bit unsigned integer.
-
-// using namespace std; // Better to put this or std:: at translation units scope.
-
-//--------------------------------------------------------------------------------------
-// Common routines:
-
-//--------------------------------------------------------------------------------------
More information about the lldb-commits
mailing list