Steal LLVM.h from Clang. This brings in very commonly used LLVM ADT/Support
types into the lld namespace.
llvm-svn: 153963
diff --git a/lld/lib/Core/File.cpp b/lld/lib/Core/File.cpp
index 995993e..ffca9cb 100644
--- a/lld/lib/Core/File.cpp
+++ b/lld/lib/Core/File.cpp
@@ -8,13 +8,14 @@
//===----------------------------------------------------------------------===//
#include "lld/Core/File.h"
+#include "lld/Core/LLVM.h"
namespace lld {
File::~File() {}
-llvm::StringRef File::translationUnitSource() const {
- return llvm::StringRef();
+StringRef File::translationUnitSource() const {
+ return StringRef();
}