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:
parent
37ec4b241c
commit
0b787e9fe0
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user