diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-06-01 16:57:54 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-06-01 16:57:54 +0000 |
commit | 6a5e062cbcb5c10e745f241604ca080d5cfbefcc (patch) | |
tree | fef7cb68061d4dad0dbdbad3f08257413afe8073 | |
parent | 3617e198aa89d4aa0921343a22b96823a63f8a58 (diff) |
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
-rw-r--r-- | include/clang/Tooling/ASTMatchers.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <assert.h> -#include <stdint.h> +#include "llvm/Support/DataTypes.h" +#include <cassert> #include <map> #include <string> #include <utility> |