diff options
| author | Mehdi Amini <mehdi.amini@apple.com> | 2016-04-16 07:51:28 +0000 |
|---|---|---|
| committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-04-16 07:51:28 +0000 |
| commit | 47b292d3fdb060b99388ac23b68d01eba34b31bf (patch) | |
| tree | 5a06696439f21e563eb4b695045bcb1435a472f7 /llvm/unittests | |
| parent | 1d30fcaccf6886190d635304cfa120fdf4b938ff (diff) | |
| download | bcm5719-llvm-47b292d3fdb060b99388ac23b68d01eba34b31bf.tar.gz bcm5719-llvm-47b292d3fdb060b99388ac23b68d01eba34b31bf.zip | |
Remove some unneeded headers and replace some headers with forward class declarations (NFC)
Differential Revision: http://reviews.llvm.org/D19154
Patch by Eugene Kosov <claprix@yandex.ru>
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 266524
Diffstat (limited to 'llvm/unittests')
| -rw-r--r-- | llvm/unittests/ADT/APIntTest.cpp | 2 | ||||
| -rw-r--r-- | llvm/unittests/ADT/StringMapTest.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/llvm/unittests/ADT/APIntTest.cpp b/llvm/unittests/ADT/APIntTest.cpp index 4ae70251d4e..98504b762a1 100644 --- a/llvm/unittests/ADT/APIntTest.cpp +++ b/llvm/unittests/ADT/APIntTest.cpp @@ -8,10 +8,10 @@ //===----------------------------------------------------------------------===// #include "llvm/ADT/APInt.h" +#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallString.h" #include "gtest/gtest.h" #include <array> -#include <ostream> using namespace llvm; diff --git a/llvm/unittests/ADT/StringMapTest.cpp b/llvm/unittests/ADT/StringMapTest.cpp index a85cae1153c..6ca701bb23a 100644 --- a/llvm/unittests/ADT/StringMapTest.cpp +++ b/llvm/unittests/ADT/StringMapTest.cpp @@ -7,9 +7,10 @@ // //===----------------------------------------------------------------------===// -#include "gtest/gtest.h" #include "llvm/ADT/StringMap.h" +#include "llvm/ADT/Twine.h" #include "llvm/Support/DataTypes.h" +#include "gtest/gtest.h" #include <tuple> using namespace llvm; |

