[Lldb-commits] [lldb] r105897 - in /lldb/trunk/include/lldb/API: SBBreakpoint.h SBEvent.h SBInstruction.h SBInstructionList.h SBProcess.h SBSourceManager.h SBThread.h SBValue.h
Eli Friedman
eli.friedman at gmail.com
Sat Jun 12 11:37:54 PDT 2010
Author: efriedma
Date: Sat Jun 12 13:37:54 2010
New Revision: 105897
URL: http://llvm.org/viewvc/llvm-project?rev=105897&view=rev
Log:
Add missing includes.
Modified:
lldb/trunk/include/lldb/API/SBBreakpoint.h
lldb/trunk/include/lldb/API/SBEvent.h
lldb/trunk/include/lldb/API/SBInstruction.h
lldb/trunk/include/lldb/API/SBInstructionList.h
lldb/trunk/include/lldb/API/SBProcess.h
lldb/trunk/include/lldb/API/SBSourceManager.h
lldb/trunk/include/lldb/API/SBThread.h
lldb/trunk/include/lldb/API/SBValue.h
Modified: lldb/trunk/include/lldb/API/SBBreakpoint.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBBreakpoint.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBBreakpoint.h (original)
+++ lldb/trunk/include/lldb/API/SBBreakpoint.h Sat Jun 12 13:37:54 2010
@@ -11,6 +11,7 @@
#define LLDB_SBBreakpoint_h_
#include "lldb/API/SBDefines.h"
+#include <stdio.h>
namespace lldb {
Modified: lldb/trunk/include/lldb/API/SBEvent.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBEvent.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBEvent.h (original)
+++ lldb/trunk/include/lldb/API/SBEvent.h Sat Jun 12 13:37:54 2010
@@ -10,6 +10,7 @@
#ifndef LLDB_SBEvent_h_
#define LLDB_SBEvent_h_
+#include <stdio.h>
#include <vector>
#include "lldb/API/SBDefines.h"
Modified: lldb/trunk/include/lldb/API/SBInstruction.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBInstruction.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBInstruction.h (original)
+++ lldb/trunk/include/lldb/API/SBInstruction.h Sat Jun 12 13:37:54 2010
@@ -12,6 +12,8 @@
#include "lldb/API/SBDefines.h"
+#include <stdio.h>
+
// There's a lot to be fixed here, but need to wait for underlying insn implementation
// to be revised & settle down first.
Modified: lldb/trunk/include/lldb/API/SBInstructionList.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBInstructionList.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBInstructionList.h (original)
+++ lldb/trunk/include/lldb/API/SBInstructionList.h Sat Jun 12 13:37:54 2010
@@ -12,6 +12,8 @@
#include "lldb/API/SBDefines.h"
+#include <stdio.h>
+
namespace lldb {
class SBInstructionList
Modified: lldb/trunk/include/lldb/API/SBProcess.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBProcess.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBProcess.h (original)
+++ lldb/trunk/include/lldb/API/SBProcess.h Sat Jun 12 13:37:54 2010
@@ -13,6 +13,7 @@
#include "lldb/API/SBDefines.h"
#include "lldb/API/SBError.h"
#include "lldb/API/SBTarget.h"
+#include <stdio.h>
namespace lldb {
Modified: lldb/trunk/include/lldb/API/SBSourceManager.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBSourceManager.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBSourceManager.h (original)
+++ lldb/trunk/include/lldb/API/SBSourceManager.h Sat Jun 12 13:37:54 2010
@@ -12,6 +12,8 @@
#include "lldb/API/SBDefines.h"
+#include <stdio.h>
+
namespace lldb {
class SBSourceManager
Modified: lldb/trunk/include/lldb/API/SBThread.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBThread.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBThread.h (original)
+++ lldb/trunk/include/lldb/API/SBThread.h Sat Jun 12 13:37:54 2010
@@ -12,6 +12,8 @@
#include "lldb/API/SBDefines.h"
+#include <stdio.h>
+
namespace lldb {
class SBFrame;
Modified: lldb/trunk/include/lldb/API/SBValue.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBValue.h?rev=105897&r1=105896&r2=105897&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBValue.h (original)
+++ lldb/trunk/include/lldb/API/SBValue.h Sat Jun 12 13:37:54 2010
@@ -12,6 +12,8 @@
#include "lldb/API/SBDefines.h"
+#include <stdio.h>
+
namespace lldb {
class SBValue
More information about the lldb-commits
mailing list