mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-16 14:57:05 +01:00
Avoid namespaec collision to make gcc happy
This commit is contained in:
@ -301,9 +301,9 @@ public:
|
|||||||
t_P[level] = 0;
|
t_P[level] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int step = 0; step < Params.MDsteps; ++step) { // MD step
|
for (int stp = 0; stp < Params.MDsteps; ++stp) { // MD step
|
||||||
int first_step = (step == 0);
|
int first_step = (stp == 0);
|
||||||
int last_step = (step == Params.MDsteps - 1);
|
int last_step = (stp == Params.MDsteps - 1);
|
||||||
this->step(U, 0, first_step, last_step);
|
this->step(U, 0, first_step, last_step);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user