1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 11:15:55 +01:00

Avoid namespaec collision to make gcc happy

This commit is contained in:
Peter Boyle 2020-08-20 22:23:29 +02:00
parent 37ec4b241c
commit 0b787e9fe0

View File

@ -301,9 +301,9 @@ public:
t_P[level] = 0;
}
for (int step = 0; step < Params.MDsteps; ++step) { // MD step
int first_step = (step == 0);
int last_step = (step == Params.MDsteps - 1);
for (int stp = 0; stp < Params.MDsteps; ++stp) { // MD step
int first_step = (stp == 0);
int last_step = (stp == Params.MDsteps - 1);
this->step(U, 0, first_step, last_step);
}