//===----------------------------------------------------------------------===// // // 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 // class scoped_allocator_adaptor // template // bool // operator==(const scoped_allocator_adaptor& a, // const scoped_allocator_adaptor& b); // // template // bool // operator!=(const scoped_allocator_adaptor& a, // const scoped_allocator_adaptor& b); #include #include #include "allocators.h" int main() { #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES { typedef std::scoped_allocator_adaptor> A; A a1(A1(3)); A a2 = a1; assert(a2 == a1); assert(!(a2 != a1)); } { typedef std::scoped_allocator_adaptor, A2> A; A a1(A1(4), A2(5)); A a2 = a1; assert(a2 == a1); assert(!(a2 != a1)); } { typedef std::scoped_allocator_adaptor, A2, A3> A; A a1(A1(4), A2(5), A3(6)); A a2 = a1; assert(a2 == a1); assert(!(a2 != a1)); } { typedef std::scoped_allocator_adaptor, A2, A3> A; A a1(A1(4), A2(5), A3(6)); A a2(A1(4), A2(5), A3(5)); assert(a2 != a1); assert(!(a2 == a1)); } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES }