From dcbfd19e88ddfa1b6e3944cba37bf1e59984ed46 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Tue, 4 Sep 2012 14:55:50 +0000 Subject: [PATCH] Patch from info from Daniel Malea that should fix the build on linux after fixes committed with revision 162860. llvm-svn: 163139 --- lldb/source/Breakpoint/BreakpointID.cpp | 2 ++ lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/lldb/source/Breakpoint/BreakpointID.cpp b/lldb/source/Breakpoint/BreakpointID.cpp index 6180e4d856bb..9a59e29d007d 100644 --- a/lldb/source/Breakpoint/BreakpointID.cpp +++ b/lldb/source/Breakpoint/BreakpointID.cpp @@ -9,6 +9,8 @@ // C Includes +#include + // C++ Includes // Other libraries and framework includes // Project includes diff --git a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp index fd1b0e0ebad7..1c7bf6ae4e26 100644 --- a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp +++ b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp @@ -12,6 +12,7 @@ // C++ Includes // Other libraries and framework includes +#include "lldb/Core/Module.h" #include "lldb/Core/PluginManager.h" #include "lldb/Core/State.h" #include "lldb/Host/Host.h"