diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-15 15:54:37 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-15 15:54:37 +0000 |
commit | 0eaee545eef49ff9498234d3a51a5cbde59bf976 (patch) | |
tree | fd7691e102022fb97622c5485fa8c4f506fc124e /llvm/unittests/ADT/IteratorTest.cpp | |
parent | 1c34d10776828c0756ff4f0b2b9aa8bda2be348a (diff) | |
download | bcm5719-llvm-0eaee545eef49ff9498234d3a51a5cbde59bf976.tar.gz bcm5719-llvm-0eaee545eef49ff9498234d3a51a5cbde59bf976.zip |
[llvm] Migrate llvm::make_unique to std::make_unique
Now that we've moved to C++14, we no longer need the llvm::make_unique
implementation from STLExtras.h. This patch is a mechanical replacement
of (hopefully) all the llvm::make_unique instances across the monorepo.
llvm-svn: 369013
Diffstat (limited to 'llvm/unittests/ADT/IteratorTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/IteratorTest.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/unittests/ADT/IteratorTest.cpp b/llvm/unittests/ADT/IteratorTest.cpp index f46f109d572..2f5abb64e7d 100644 --- a/llvm/unittests/ADT/IteratorTest.cpp +++ b/llvm/unittests/ADT/IteratorTest.cpp @@ -107,10 +107,10 @@ TEST(PointeeIteratorTest, Basic) { TEST(PointeeIteratorTest, SmartPointer) { SmallVector<std::unique_ptr<int>, 4> V; - V.push_back(make_unique<int>(1)); - V.push_back(make_unique<int>(2)); - V.push_back(make_unique<int>(3)); - V.push_back(make_unique<int>(4)); + V.push_back(std::make_unique<int>(1)); + V.push_back(std::make_unique<int>(2)); + V.push_back(std::make_unique<int>(3)); + V.push_back(std::make_unique<int>(4)); typedef pointee_iterator< SmallVectorImpl<std::unique_ptr<int>>::const_iterator> @@ -209,10 +209,10 @@ TEST(FilterIteratorTest, FunctionPointer) { TEST(FilterIteratorTest, Composition) { auto IsOdd = [](int N) { return N % 2 == 1; }; - std::unique_ptr<int> A[] = {make_unique<int>(0), make_unique<int>(1), - make_unique<int>(2), make_unique<int>(3), - make_unique<int>(4), make_unique<int>(5), - make_unique<int>(6)}; + std::unique_ptr<int> A[] = {make_unique<int>(0), std::make_unique<int>(1), + std::make_unique<int>(2), std::make_unique<int>(3), + std::make_unique<int>(4), std::make_unique<int>(5), + std::make_unique<int>(6)}; using PointeeIterator = pointee_iterator<std::unique_ptr<int> *>; auto Range = make_filter_range( make_range(PointeeIterator(std::begin(A)), PointeeIterator(std::end(A))), |