diff options
author | Pawel Bylica <chfast@gmail.com> | 2015-06-25 10:47:08 +0000 |
---|---|---|
committer | Pawel Bylica <chfast@gmail.com> | 2015-06-25 10:47:08 +0000 |
commit | 0dda16464438c95fbd935512b1cf025f08df3ee6 (patch) | |
tree | af33d0e33940ff0711b2e206662faad560467a20 | |
parent | e967dd04209a0c06b5cd82c4c4a42adffad01d0f (diff) | |
download | bcm5719-llvm-0dda16464438c95fbd935512b1cf025f08df3ee6.tar.gz bcm5719-llvm-0dda16464438c95fbd935512b1cf025f08df3ee6.zip |
Add missing <array> include.
llvm-svn: 240629
-rw-r--r-- | llvm/unittests/ADT/APIntTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/APIntTest.cpp b/llvm/unittests/ADT/APIntTest.cpp index 098140c50c6..0113ddde532 100644 --- a/llvm/unittests/ADT/APIntTest.cpp +++ b/llvm/unittests/ADT/APIntTest.cpp @@ -10,6 +10,7 @@ #include "llvm/ADT/APInt.h" #include "llvm/ADT/SmallString.h" #include "gtest/gtest.h" +#include <array> #include <ostream> using namespace llvm; |