Skip to content

Instantly share code, notes, and snippets.

@1995hnagamin
Created February 7, 2016 05:49
Show Gist options
  • Save 1995hnagamin/9eba86c4d0c83243da67 to your computer and use it in GitHub Desktop.
Save 1995hnagamin/9eba86c4d0c83243da67 to your computer and use it in GitHub Desktop.
テンプレートテンプレートパラメータ
template<typename T> struct C {};
template <template <typename T> class C>
class D {
C<int> cint;
C<double> cdouble;
};
int main() {
D<C> d;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment