define OneCoeff struct in my_page.h as HyperOneCoeff to resolve compilation issues

This commit is contained in:
Axel Kohlmeyer
2020-09-07 07:57:23 -04:00
parent 2270d86519
commit f8ebcc90fb
4 changed files with 17 additions and 14 deletions

View File

@ -257,12 +257,11 @@ void MyPage<T>::allocate() {
}
// explicit instantiations
#include "fix.h"
#include "REPLICA/fix_hyper_local.h"
namespace LAMMPS_NS {
template class MyPage<int>;
template class MyPage<long>;
template class MyPage<long long>;
template class MyPage<double>;
template class MyPage<FixHyperLocal::OneCoeff>;
template class MyPage<HyperOneCoeff>;
}