Guest User

Untitled

a guest
Apr 19th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. template <typename T>
  2. class foo {
  3. template <typename U>
  4. void template_member_function(U& u);
  5. };
  6.  
  7. template <typename T, typename U>
  8. void template_function(T& t, U& u) {
  9. t.template template_member_function<U>(u);
  10. }
  11.  
  12. template template_function(int&, double&);
Add Comment
Please, Sign In to add comment