[cfe-commits] r132403 - /cfe/trunk/include/clang/Tooling/ASTMatchers.h
Eli Friedman
eli.friedman at gmail.com
Wed Jun 1 09:57:54 PDT 2011
Author: efriedma
Date: Wed Jun 1 11:57:54 2011
New Revision: 132403
URL: http://llvm.org/viewvc/llvm-project?rev=132403&view=rev
Log:
Don't use stdint.h; including it directly is not allowed from LLVM code because it doesn't exist on MSVC.
Modified:
cfe/trunk/include/clang/Tooling/ASTMatchers.h
Modified: cfe/trunk/include/clang/Tooling/ASTMatchers.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Tooling/ASTMatchers.h?rev=132403&r1=132402&r2=132403&view=diff
==============================================================================
--- cfe/trunk/include/clang/Tooling/ASTMatchers.h (original)
+++ cfe/trunk/include/clang/Tooling/ASTMatchers.h Wed Jun 1 11:57:54 2011
@@ -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>
More information about the cfe-commits
mailing list