Don't use stdint.h; including it directly is not allowed from LLVM code because it doesn't exist on MSVC.

llvm-svn: 132403
This commit is contained in:
Eli Friedman 2011-06-01 16:57:54 +00:00
parent 2380483355
commit ede23f760b
1 changed files with 2 additions and 2 deletions

View File

@ -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>