WGState: optionally instantiate for float

This commit is contained in:
Arne Morten Kvarving 2024-04-12 13:11:09 +02:00
parent 781f978b31
commit 1514b466d8

View File

@ -63,4 +63,8 @@ bool WGState<Scalar>::operator==(const WGState& rhs) const
template struct WGState<double>;
#if FLOW_INSTANTIATE_FLOAT
template struct WGState<float>;
#endif
}