Home | History | Annotate | Download | only in func.wrap.func.con

Lines Matching refs:FuncType

40 template <class FuncType, class AllocType>
48 std::function<FuncType> f2(std::allocator_arg, alloc, target);
52 assert(f2.template target<FuncType>() == 0);
53 assert(f2.template target<FuncType*>() == 0);
60 template <class FuncType, class AllocType>
65 FuncType* target = &FreeFunction;
67 std::function<FuncType> f2(std::allocator_arg, alloc, target);
69 assert(f2.template target<FuncType*>());
70 assert(*f2.template target<FuncType*>() == target);
71 assert(f2.template target<FuncType>() == 0);
77 template <class TargetType, class FuncType, class AllocType>
84 std::function<FuncType> f2(std::allocator_arg, alloc, target);
88 assert(f2.template target<FuncType*>() == 0);