From 3b8f03d964f47d4ca71bbf1d47f11a494c646488 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 30 Oct 2017 16:07:59 +0000 Subject: [PATCH] Mark test as unsupported on C++98/03, since it uses move_iterator git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@316917 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../alg.set.operations/set.union/set_union_move.pass.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp b/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp index aa5b87009..078060176 100644 --- a/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp +++ b/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp @@ -19,6 +19,8 @@ // set_union(InIter1 first1, InIter1 last1, InIter2 first2, InIter2 last2, // OutIter result, Compare comp); +// UNSUPPORTED: c++98, c++03 + #include #include #include