From 392e4fbdd9b152efff4c051286f6b2c21270c902 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 18 Apr 2012 21:39:23 +0000 Subject: Creating release_31 branch llvm-svn: 155059 llvm-svn: 155053 llvm-svn: 155051 --- .../alg.nonmodifying/alg.equal/equal_pred.pass.cpp | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp (limited to 'libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp') diff --git a/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp b/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp deleted file mode 100644 index 58ce5972ff2e..000000000000 --- a/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp +++ /dev/null @@ -1,37 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// - -// template Pred> -// requires CopyConstructible -// bool -// equal(Iter1 first1, Iter1 last1, Iter2 first2, Pred pred); - -#include -#include -#include - -#include "../../iterators.h" - -int main() -{ - int ia[] = {0, 1, 2, 3, 4, 5}; - const unsigned s = sizeof(ia)/sizeof(ia[0]); - int ib[s] = {0, 1, 2, 5, 4, 5}; - assert(std::equal(input_iterator(ia), - input_iterator(ia+s), - input_iterator(ia), - std::equal_to())); - assert(!std::equal(input_iterator(ia), - input_iterator(ia+s), - input_iterator(ib), - std::equal_to())); -} -- cgit v1.2.3