Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit c4692f8e authored by gsell's avatar gsell
Browse files

Merge branch '796-ippl-test-pwrspec-testpwrspec-cpp-ambiguous-call-to-reduce' into 'master'

Resolve "ippl/test/PwrSpec/testPwrSpec.cpp: ambiguous call to reduce()"

Closes #796

See merge request !653
parents e22e0f18 a70d27d4
No related branches found
No related tags found
1 merge request!653Resolve "ippl/test/PwrSpec/testPwrSpec.cpp: ambiguous call to reduce()"
......@@ -33,8 +33,6 @@ Build:
#include <iostream>
#include <set>
using namespace std;
// dimension of our positions
const unsigned Dim = 3;
......@@ -289,7 +287,7 @@ public:
k2 -= nr_m[2];
kk=(int)nint(sqrt(ii*ii+jj*jj+k2*k2));
kk = min(kmax_m, (int)kk);
kk = std::min(kmax_m, (int)kk);
spectra1D_m[kk] += real(rho_m.localElement(loop));
Nk_m[kk]++;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment