[Lldb-commits] [PATCH] linux: qualify includes.

Stephen Wilson wilsons at start.ca
Mon Dec 20 12:18:43 PST 2010


Provide full qualification for #include's.


diff --git a/include/lldb/Utility/ArchDefaultUnwindPlan.h b/include/lldb/Utility/ArchDefaultUnwindPlan.h
index b907558..3a887c3 100644
--- a/include/lldb/Utility/ArchDefaultUnwindPlan.h
+++ b/include/lldb/Utility/ArchDefaultUnwindPlan.h
@@ -10,7 +10,7 @@
 #ifndef utility_ArchDefaultUnwindPlan_h_
 #define utility_ArchDefaultUnwindPlan_h_
 
-#include "lldb-private.h"
+#include "lldb/lldb-private.h"
 #include "lldb/Core/PluginInterface.h"
 
 namespace lldb_private {
diff --git a/include/lldb/Utility/ArchVolatileRegs.h b/include/lldb/Utility/ArchVolatileRegs.h
index 914a786..b42ecdd 100644
--- a/include/lldb/Utility/ArchVolatileRegs.h
+++ b/include/lldb/Utility/ArchVolatileRegs.h
@@ -10,7 +10,7 @@
 #ifndef utility_ArchVolatileRegs_h_
 #define utility_ArchVolatileRegs_h_
 
-#include "lldb-private.h"
+#include "lldb/lldb-private.h"
 #include "lldb/Core/PluginInterface.h"
 
 namespace lldb_private {
diff --git a/include/lldb/Utility/UnwindAssemblyProfiler.h b/include/lldb/Utility/UnwindAssemblyProfiler.h
index 7c127df..df0ceff 100644
--- a/include/lldb/Utility/UnwindAssemblyProfiler.h
+++ b/include/lldb/Utility/UnwindAssemblyProfiler.h
@@ -10,7 +10,7 @@
 #ifndef utility_UnwindAssemblyProfiler_h_
 #define utility_UnwindAssemblyProfiler_h_
 
-#include "lldb-private.h"
+#include "lldb/lldb-private.h"
 #include "lldb/Core/PluginInterface.h"
 
 namespace lldb_private {
diff --git a/source/Expression/ClangPersistentVariables.cpp b/source/Expression/ClangPersistentVariables.cpp
index 4919922..d8f4598 100644
--- a/source/Expression/ClangPersistentVariables.cpp
+++ b/source/Expression/ClangPersistentVariables.cpp
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "ClangPersistentVariables.h"
+#include "lldb/Expression/ClangPersistentVariables.h"
 #include "lldb/Core/DataExtractor.h"
 #include "lldb/Core/Log.h"
 #include "lldb/Core/StreamString.h"
diff --git a/source/Utility/ArchDefaultUnwindPlan.cpp b/source/Utility/ArchDefaultUnwindPlan.cpp
index 913d861..1d5b5b9 100644
--- a/source/Utility/ArchDefaultUnwindPlan.cpp
+++ b/source/Utility/ArchDefaultUnwindPlan.cpp
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "lldb-private.h"
+#include "lldb/lldb-private.h"
 #include "lldb/Core/PluginManager.h"
 #include "lldb/Core/PluginInterface.h"
 #include "lldb/Utility/ArchDefaultUnwindPlan.h"
diff --git a/source/Utility/ArchVolatileRegs.cpp b/source/Utility/ArchVolatileRegs.cpp
index 041237f..207cdd9 100644
--- a/source/Utility/ArchVolatileRegs.cpp
+++ b/source/Utility/ArchVolatileRegs.cpp
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "lldb-private.h"
+#include "lldb/lldb-private.h"
 #include "lldb/Core/PluginManager.h"
 #include "lldb/Core/PluginInterface.h"
 #include "lldb/Utility/ArchVolatileRegs.h"
diff --git a/source/Utility/UnwindAssemblyProfiler.cpp b/source/Utility/UnwindAssemblyProfiler.cpp
index eb4262a..7b4e60a 100644
--- a/source/Utility/UnwindAssemblyProfiler.cpp
+++ b/source/Utility/UnwindAssemblyProfiler.cpp
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "lldb-private.h"
+#include "lldb/lldb-private.h"
 #include "lldb/Core/PluginManager.h"
 #include "lldb/Core/PluginInterface.h"
 #include "lldb/Utility/UnwindAssemblyProfiler.h"



More information about the lldb-commits mailing list