классом:
template< typename Type, size_t N, bool TF >
class StaticVector;
Хочу унаследоваться от него чтоб добавить свои методы, делаю так:
template<typename Type, size_t N>
class Vector<Type, N>: public blaze::StaticVector<Type, N> {
};
В ответ получаю:
ошибка: «Vector» is not a class template
class Vector<Type, N>: public blaze::StaticVector<Type, N> {
Пиши просто Vector, без <Type, N>
Точно так же как от не шаблона
Обсуждают сегодня