|
|
От: | _nn_ | |
| Дата: | 11.02.05 17:36 | ||
| Оценка: | |||
struct a
{
template<typename T>
void f(T* p);
};
template<>
void a::f<char const>(char const* p)
{
}template<typename A>
struct a
{
template<typename T>
void f(T* p);
};
template<typename A>
template<>
void a<A>::f<char const>(char const* p)
{
}