From: Eli Friedman Date: Wed, 1 Jun 2011 16:57:54 +0000 (+0000) Subject: Don't use stdint.h; including it directly is not allowed from LLVM code because it... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a5e062cbcb5c10e745f241604ca080d5cfbefcc;p=clang Don't use stdint.h; including it directly is not allowed from LLVM code because it doesn't exist on MSVC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132403 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Tooling/ASTMatchers.h b/include/clang/Tooling/ASTMatchers.h index 7c510e6584..74b94c967e 100644 --- a/include/clang/Tooling/ASTMatchers.h +++ b/include/clang/Tooling/ASTMatchers.h @@ -48,8 +48,8 @@ #include "clang/Tooling/VariadicFunction.h" #include "llvm/ADT/Twine.h" #include "llvm/Support/type_traits.h" -#include -#include +#include "llvm/Support/DataTypes.h" +#include #include #include #include