14 lines
900 B
Diff
14 lines
900 B
Diff
diff --git a/src/hamiltonian/hamiltonian.cpp b/src/hamiltonian/hamiltonian.cpp
|
|
index 54a91df..ea66ecf 100644
|
|
--- a/src/hamiltonian/hamiltonian.cpp
|
|
+++ b/src/hamiltonian/hamiltonian.cpp
|
|
@@ -74,7 +74,7 @@ Hamiltonian0<T>::Hamiltonian0(Potential& potential__, bool precompute_lapw__)
|
|
for (int j1 = 0; j1 <= j2; j1++) {
|
|
int lm1 = type.indexb(j1).lm;
|
|
int idxrf1 = type.indexb(j1).idxrf;
|
|
- hmt_[ia](j1, j2) = atom.radial_integrals_sum_L3<spin_block_t::nm>(idxrf1, idxrf2,
|
|
+ hmt_[ia](j1, j2) = atom.template radial_integrals_sum_L3<spin_block_t::nm>(idxrf1, idxrf2,
|
|
type.gaunt_coefs().gaunt_vector(lm1, lm2));
|
|
hmt_[ia](j2, j1) = std::conj(hmt_[ia](j1, j2));
|
|
}
|