diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2017-10-30 16:07:59 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2017-10-30 16:07:59 +0000 |
commit | d842505b9b285c9583c796d732a370d7f40df305 (patch) | |
tree | bda018d0d0624f1f7034fe3747f8add47fc08eef /libcxx/test/std/algorithms | |
parent | 2696db90d1efa77c6857ceac645aa8fe9cebce6a (diff) | |
download | bcm5719-llvm-d842505b9b285c9583c796d732a370d7f40df305.tar.gz bcm5719-llvm-d842505b9b285c9583c796d732a370d7f40df305.zip |
Mark test as unsupported on C++98/03, since it uses move_iterator
llvm-svn: 316917
Diffstat (limited to 'libcxx/test/std/algorithms')
-rw-r--r-- | libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp index aa5b8700961..078060176b7 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp +++ b/libcxx/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 <algorithm> #include <cassert> #include <iterator> |