Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching full:template

5 template <int N> struct C {
6 template <int M> int f() {
8 return arr[M/2] + C<M/2>().template f<M-1>();
11 template <> template <> int C<0>::f<0>() { return 0; }
12 template <> template <> int C<0>::f<1>() { return 0; }
13 template <> template <> int C<1>::f<0>() { return 0; }
14 template <> template <> int C<1>::f<1>() { return 0; }