Bug in ParticleField2D.hh

Hello everyone,

when using the template “DenseParticleField2D”, the compiler gives an error:

[code=“cpp”]
In file included from /Users/Alessio/Desktop/palabos-v1.4r1/src/palabos2D.hh:39:
In file included from /Users/Alessio/Desktop/palabos-v1.4r1/src/particles/headers2D.hh:31:
/Users/Alessio/Desktop/palabos-v1.4r1/src/particles/particleField2D.hh:294:5: error:
use of undeclared identifier ‘computeGridPosition’
computeGridPosition(particle->getPosition(), iX, iY);
^
this->



Doing as suggested by the debugger and changing in:
[code="cpp"]
this->computeGridPosition(particle->getPosition(), iX, iY);

the compilation is succesful. Hope it can be of any help!

Alessio