1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-24 22:43:47 +00:00

Instantiate struct as a struct

This commit is contained in:
Alexander "Ace" Olofsson 2015-07-09 22:45:25 +02:00
parent b3b55a5842
commit 2bebfea38d

View File

@ -46,7 +46,7 @@ namespace ESM
if (mProgress) if (mProgress)
esm.writeHNT("STPR", mProgress); esm.writeHNT("STPR", mProgress);
} }
template class StatState<int>;
template class StatState<float>;
} }
template struct ESM::StatState<int>;
template struct ESM::StatState<float>;