builds and links!

This commit is contained in:
John Dupuy
2023-11-05 16:45:35 -06:00
parent 796147aeda
commit f67e605f0d
7 changed files with 51 additions and 60 deletions

View File

@@ -164,16 +164,4 @@ namespace MbD {
assert(false);
return FColsptr<T>();
}
template<typename T>
std::ostream& FullColumn<T>::printOn(std::ostream& s) const
{
s << "FullCol{";
s << this->at(0);
for (int i = 1; i < this->size(); i++)
{
s << ", " << this->at(i);
}
s << "}";
return s;
}
}