Searched defs:wrap_impl (Results 1 – 1 of 1) sorted by relevance
61 wrap_impl(const T& t, mpl::true_) { return boost::ref(const_cast<T&>(t)); } in wrap_impl() function65 wrap_impl(T& t, mpl::true_) { return boost::ref(t); } in wrap_impl() function69 wrap_impl(const T& t, mpl::false_) { return t; } in wrap_impl() function73 wrap_impl(T& t, mpl::false_) { return t; } in wrap_impl() function