Fixed broken includes introduced by recent (incomplete) patch to
TranslationUnit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45177 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/AST/TranslationUnit.cpp b/AST/TranslationUnit.cpp
index 2507d24..51f6b57 100644
--- a/AST/TranslationUnit.cpp
+++ b/AST/TranslationUnit.cpp
@@ -10,8 +10,7 @@
//
//===----------------------------------------------------------------------===//
-#include "TranslationUnit.h"
-#include "clang.h"
+#include "clang/AST/TranslationUnit.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/Basic/SourceManager.h"
diff --git a/Driver/SerializationTest.cpp b/Driver/SerializationTest.cpp
index 7bd6cd1..bb946e7 100644
--- a/Driver/SerializationTest.cpp
+++ b/Driver/SerializationTest.cpp
@@ -18,7 +18,7 @@
#include "clang/AST/CFG.h"
#include "clang.h"
#include "ASTConsumers.h"
-#include "TranslationUnit.h"
+#include "clang/AST/TranslationUnit.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/ADT/scoped_ptr.h"
#include "llvm/Support/Streams.h"