Skip to content

Commit

Permalink
Change order of definition
Browse files Browse the repository at this point in the history
  • Loading branch information
williamfgc committed Sep 6, 2023
1 parent 5421350 commit 0eef653
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/QMCWaveFunctions/SPOSetBuilderT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,9 @@ std::unique_ptr<SPOSetT<std::complex<double>>> SPOSetBuilderT<std::complex<doubl
return nullptr;
}

template class SPOSetBuilderT<double>;

template class SPOSetBuilderT<float>;
template class SPOSetBuilderT<std::complex<double>>;
template class SPOSetBuilderT<double>;
template class SPOSetBuilderT<std::complex<float>>;
template class SPOSetBuilderT<std::complex<double>>;
} // namespace qmcplusplus

0 comments on commit 0eef653

Please sign in to comment.