[Lldb-commits] [lldb] r181724 - Fixed build break introduced by r181717
Daniel Malea
daniel.malea at intel.com
Mon May 13 12:35:08 PDT 2013
Author: dmalea
Date: Mon May 13 14:35:07 2013
New Revision: 181724
URL: http://llvm.org/viewvc/llvm-project?rev=181724&view=rev
Log:
Fixed build break introduced by r181717
- added missing ConstString header
- moved "using lldb*" statements to OS-independent section
Modified:
lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h
Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp?rev=181724&r1=181723&r2=181724&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp Mon May 13 14:35:07 2013
@@ -9,6 +9,9 @@
#include "PlatformDarwinKernel.h"
+using namespace lldb;
+using namespace lldb_private;
+
#if defined (__APPLE__) // This Plugin uses the Mac-specific source/Host/macosx/cfcpp utilities
@@ -37,9 +40,6 @@
#include "Host/macosx/cfcpp/CFCBundle.h"
-using namespace lldb;
-using namespace lldb_private;
-
//------------------------------------------------------------------
// Static Variables
//------------------------------------------------------------------
Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h?rev=181724&r1=181723&r2=181724&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h Mon May 13 14:35:07 2013
@@ -10,6 +10,8 @@
#ifndef liblldb_PlatformDarwinKernel_h_
#define liblldb_PlatformDarwinKernel_h_
+#include "lldb/Core/ConstString.h"
+
#if defined (__APPLE__) // This Plugin uses the Mac-specific source/Host/macosx/cfcpp utilities
More information about the lldb-commits
mailing list