Lines Matching refs:Args
55 template<typename T, typename ...Args>
56 unique_ptr<T> make_unique_ptr(Args &&...args) {
57 return unique_ptr<T>(new T(forward<Args>(args)...));
99 template<typename F, typename ...Args>
100 void forward(F f, Args &&...args) {
101 f(static_cast<Args&&>(args)...); // expected-error{{no matching function for call to object of type 'perfect_forwarding::F0'}}