Moved instantiations around. Removed a few warning.

This commit is contained in:
John Dupuy
2023-11-05 17:47:33 -06:00
parent f67e605f0d
commit 997ecc0b2a
10 changed files with 303 additions and 302 deletions

View File

@@ -161,7 +161,11 @@ namespace MbD {
template<typename T>
FColsptr<T> FullColumn<T>::simplified()
{
assert(false);
// assert(false);
return FColsptr<T>();
}
// instantiate on purpose to make visible in library api:
template class FullColumn<double>;
template class FullColumn<int>;
}