GroupState: optionally instantiate for float

This commit is contained in:
Arne Morten Kvarving 2024-04-12 13:11:09 +02:00
parent 2fa954b724
commit 836436ccdc

View File

@ -421,4 +421,8 @@ has_gpmaint_target(const std::string& gname) const
template class GroupState<double>;
#if FLOW_INSTANTIATE_FLOAT
template class GroupState<float>;
#endif
}