//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // reference_wrapper // template reference_wrapper ref(reference_wrappert); #include #include #include "counting_predicates.hpp" bool is5 ( int i ) { return i == 5; } template bool call_pred ( T pred ) { return pred(5); } int main() { { int i = 0; std::reference_wrapper r1 = std::ref(i); std::reference_wrapper r2 = std::ref(r1); assert(&r2.get() == &i); } { unary_counting_predicate cp(is5); assert(!cp(6)); assert(cp.count() == 1); assert(call_pred(cp)); assert(cp.count() == 1); assert(call_pred(std::ref(cp))); assert(cp.count() == 2); } }