aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectSource.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-02-08 05:05:52 +0000
committerGreg Clayton <gclayton@apple.com>2011-02-08 05:05:52 +0000
commit53239f00b5663b05f0e8f2fe47bf8604778ae00d (patch)
tree7151cd4fd3184b8d3fe014e01ffb35607f9355bf /lldb/source/Commands/CommandObjectSource.cpp
parent242e0ad7291fa279f4bbd57f064fed530022f47b (diff)
downloadllvm-53239f00b5663b05f0e8f2fe47bf8604778ae00d.zip
llvm-53239f00b5663b05f0e8f2fe47bf8604778ae00d.tar.gz
llvm-53239f00b5663b05f0e8f2fe47bf8604778ae00d.tar.bz2
Moved FileSpec into the Host layer since it will vary from host to host.
We have a common unix implementation in lldb/source/Host/common/FileSpec.cpp. llvm-svn: 125078
Diffstat (limited to 'lldb/source/Commands/CommandObjectSource.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectSource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectSource.cpp b/lldb/source/Commands/CommandObjectSource.cpp
index 65983d7..bc9fc37 100644
--- a/lldb/source/Commands/CommandObjectSource.cpp
+++ b/lldb/source/Commands/CommandObjectSource.cpp
@@ -17,7 +17,7 @@
#include "lldb/Core/Debugger.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
-#include "lldb/Core/FileSpec.h"
+#include "lldb/Host/FileSpec.h"
#include "lldb/Target/Process.h"
#include "lldb/Core/SourceManager.h"
#include "lldb/Target/TargetList.h"