Skip to content
Snippets Groups Projects
Commit 13d46a77 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing for gcc 4.9.2

parent d26429b3
No related branches found
No related tags found
No related merge requests found
openfpm_data @ fcbefd1d
Subproject commit fe595a5ac0d1cfd5bb53c25728d795fbc20aabef
Subproject commit fcbefd1d58de10a473e9753645253afb4416b89a
......@@ -1040,7 +1040,7 @@ public:
{
auto key = it.get();
cell_list.add(this->template getPos(key), key.getKey());
cell_list.add(this->getPos(key), key.getKey());
++it;
}
......@@ -1111,7 +1111,7 @@ public:
vect_dist_key_dx key = it_p.get();
// Get the position of the particles
Point<dim, St> p = this->template getPos(key);
Point<dim, St> p = this->getPos(key);
// Clear the neighborhood of the particle
verlet.get(key.getKey()).clear();
......@@ -1129,7 +1129,7 @@ public:
continue;
}
Point<dim, St> q = this->template getPos(nnp);
Point<dim, St> q = this->getPos(nnp);
if (p.distance2(q) < r_cut2)
verlet.get(key.getKey()).add(nnp);
......@@ -1300,7 +1300,7 @@ public:
while (it.isNext())
{
size_t v = cdsm.getCell(this->template getPos(it.get()));
size_t v = cdsm.getCell(this->getPos(it.get()));
dec.addComputationCost(v, 1);
......
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