From: Ted Kremenek Date: Tue, 18 Dec 2007 21:36:21 +0000 (+0000) Subject: Fixed broken includes introduced by recent (incomplete) patch to X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=525fdbc2a8511080a1665838723ad56ee2b28ce4;p=clang 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 2507d244a1..51f6b57da1 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 7bd6cd1313..bb946e75da 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"