From: Ted Kremenek Date: Wed, 17 Oct 2007 18:36:42 +0000 (+0000) Subject: Fixed includes of "clang/AST/DeclObjC.h" to work on case-sensitive X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91d1d7a448bbde955e15ec39aa368958673450bf;p=clang Fixed includes of "clang/AST/DeclObjC.h" to work on case-sensitive filesystems (was "#include "clang/AST/DeclObjc.h", which worked fine on a case-insensitive HFS+ volume on the Mac). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43080 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/AST/StmtDumper.cpp b/AST/StmtDumper.cpp index 62886981b2..a30b901c1c 100644 --- a/AST/StmtDumper.cpp +++ b/AST/StmtDumper.cpp @@ -14,7 +14,7 @@ #include "clang/AST/StmtVisitor.h" #include "clang/AST/Decl.h" -#include "clang/AST/DeclObjc.h" +#include "clang/AST/DeclObjC.h" #include "clang/AST/ExprCXX.h" #include "clang/Basic/IdentifierTable.h" #include "clang/Basic/SourceManager.h" diff --git a/AST/StmtPrinter.cpp b/AST/StmtPrinter.cpp index 90c5ef2159..bd5c6b593c 100644 --- a/AST/StmtPrinter.cpp +++ b/AST/StmtPrinter.cpp @@ -14,7 +14,7 @@ #include "clang/AST/StmtVisitor.h" #include "clang/AST/Decl.h" -#include "clang/AST/DeclObjc.h" +#include "clang/AST/DeclObjC.h" #include "clang/AST/ExprCXX.h" #include "clang/AST/PrettyPrinter.h" #include "clang/Basic/IdentifierTable.h"