[Lldb-commits] [lldb] r105698 - in /lldb/trunk/include/lldb: API/SBDebugger.h API/SBProcess.h Core/Language.h Core/Scalar.h Host/Mutex.h Symbol/CompileUnit.h Symbol/Function.h Target/Process.h
Eli Friedman
eli.friedman at gmail.com
Wed Jun 9 00:22:31 PDT 2010
Author: efriedma
Date: Wed Jun 9 02:22:30 2010
New Revision: 105698
URL: http://llvm.org/viewvc/llvm-project?rev=105698&view=rev
Log:
And a few more warning/error fixes.
Modified:
lldb/trunk/include/lldb/API/SBDebugger.h
lldb/trunk/include/lldb/API/SBProcess.h
lldb/trunk/include/lldb/Core/Language.h
lldb/trunk/include/lldb/Core/Scalar.h
lldb/trunk/include/lldb/Host/Mutex.h
lldb/trunk/include/lldb/Symbol/CompileUnit.h
lldb/trunk/include/lldb/Symbol/Function.h
lldb/trunk/include/lldb/Target/Process.h
Modified: lldb/trunk/include/lldb/API/SBDebugger.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBDebugger.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBDebugger.h (original)
+++ lldb/trunk/include/lldb/API/SBDebugger.h Wed Jun 9 02:22:30 2010
@@ -11,6 +11,7 @@
#define LLDB_SBDebugger_h_
#include "lldb/API/SBDefines.h"
+#include <cstdio>
namespace lldb {
Modified: lldb/trunk/include/lldb/API/SBProcess.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBProcess.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBProcess.h (original)
+++ lldb/trunk/include/lldb/API/SBProcess.h Wed Jun 9 02:22:30 2010
@@ -29,7 +29,7 @@
eBroadcastBitStateChanged = (1 << 0),
eBroadcastBitInterrupt = (1 << 1),
eBroadcastBitSTDOUT = (1 << 2),
- eBroadcastBitSTDERR = (1 << 3),
+ eBroadcastBitSTDERR = (1 << 3)
};
SBProcess ();
Modified: lldb/trunk/include/lldb/Core/Language.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Language.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Language.h (original)
+++ lldb/trunk/include/lldb/Core/Language.h Wed Jun 9 02:22:30 2010
@@ -55,7 +55,7 @@
ObjC_plus_plus = 0x0011, ///< Objective-C++.
UPC = 0x0012, ///< Unified Parallel C.
D = 0x0013, ///< D.
- Python = 0x0014, ///< Python.
+ Python = 0x0014 ///< Python.
} Type;
//------------------------------------------------------------------
Modified: lldb/trunk/include/lldb/Core/Scalar.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Scalar.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Scalar.h (original)
+++ lldb/trunk/include/lldb/Core/Scalar.h Wed Jun 9 02:22:30 2010
@@ -230,7 +230,7 @@
}
protected:
- typedef union ValueData
+ union ValueData
{
int sint;
unsigned int uint;
Modified: lldb/trunk/include/lldb/Host/Mutex.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/Mutex.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/Mutex.h (original)
+++ lldb/trunk/include/lldb/Host/Mutex.h Wed Jun 9 02:22:30 2010
@@ -26,7 +26,7 @@
enum Type
{
eMutexTypeNormal, ///< Mutex that can't recursively entered by the same thread
- eMutexTypeRecursive, ///< Mutex can be recursively entered by the same thread
+ eMutexTypeRecursive ///< Mutex can be recursively entered by the same thread
};
//------------------------------------------------------------------
Modified: lldb/trunk/include/lldb/Symbol/CompileUnit.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/CompileUnit.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/CompileUnit.h (original)
+++ lldb/trunk/include/lldb/Symbol/CompileUnit.h Wed Jun 9 02:22:30 2010
@@ -384,7 +384,7 @@
flagsParsedAllFunctions = (1 << 0), ///< Have we already parsed all our functions
flagsParsedVariables = (1 << 1), ///< Have we already parsed globals and statics?
flagsParsedSupportFiles = (1 << 2), ///< Have we already parsed the support files for this compile unit?
- flagsParsedLineTable = (1 << 3), ///< Have we parsed the line table already?
+ flagsParsedLineTable = (1 << 3) ///< Have we parsed the line table already?
};
DISALLOW_COPY_AND_ASSIGN (CompileUnit);
Modified: lldb/trunk/include/lldb/Symbol/Function.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/Function.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/Function.h (original)
+++ lldb/trunk/include/lldb/Symbol/Function.h Wed Jun 9 02:22:30 2010
@@ -562,7 +562,7 @@
enum
{
- flagsCalculatedPrologueSize = (1 << 0), ///< Have we already tried to calculate the prologue size?
+ flagsCalculatedPrologueSize = (1 << 0) ///< Have we already tried to calculate the prologue size?
};
Modified: lldb/trunk/include/lldb/Target/Process.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Process.h?rev=105698&r1=105697&r2=105698&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Process.h (original)
+++ lldb/trunk/include/lldb/Target/Process.h Wed Jun 9 02:22:30 2010
@@ -53,7 +53,7 @@
eBroadcastBitStateChanged = (1 << 0),
eBroadcastBitInterrupt = (1 << 1),
eBroadcastBitSTDOUT = (1 << 2),
- eBroadcastBitSTDERR = (1 << 3),
+ eBroadcastBitSTDERR = (1 << 3)
};
enum
More information about the lldb-commits
mailing list