Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:pi0a

130   T pi0a = T(3.1415926535897932385);  // expected-note {{variable template 'pi0a' declared here}}
131 template float pi0a<int>; // expected-error {{type 'float' of explicit instantiation of 'pi0a' does not match expected type 'int'}}
364 T pi0a = T(3.1415926535897932385);
368 int i0a = pi0a<int>;
370 template float pi0a<float>;
371 float f0a = pi0a<float>;
373 template<> double pi0a<double> = 5.2;
374 double d0a = pi0a<double>;