diff options
author | Owen Anderson <resistor@mac.com> | 2009-05-21 00:48:13 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-05-21 00:48:13 +0000 |
commit | c4551d3d21053281cb36d89796948c9957b708b4 (patch) | |
tree | 83c9eb337da10d0b8c2b28e4aadf9225a2d163e2 | |
parent | df7d5d317096c342ee1c459139914965008fbcd7 (diff) |
Use DataTypes.h instead of stdint.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72201 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/System/Atomic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/System/Atomic.h b/include/llvm/System/Atomic.h index eeb4fe26da..f6cac962e7 100644 --- a/include/llvm/System/Atomic.h +++ b/include/llvm/System/Atomic.h @@ -14,7 +14,7 @@ #ifndef LLVM_SYSTEM_ATOMIC_H #define LLVM_SYSTEM_ATOMIC_H -#include <stdint.h> +#include "llvm/Support/DataTypes.h" namespace llvm { namespace sys { |