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

Fixing compilation with clang

parent 5f76bdf7
No related branches found
No related tags found
No related merge requests found
......@@ -1991,9 +1991,9 @@ void test_vector_dist_particle_NN_MP_iteration()
{
auto key = it.get();
vd.template getPosWrite(key)[0] = ud(eg);
vd.template getPosWrite(key)[1] = ud(eg);
vd.template getPosWrite(key)[2] = ud(eg);
vd.getPosWrite(key)[0] = ud(eg);
vd.getPosWrite(key)[1] = ud(eg);
vd.getPosWrite(key)[2] = ud(eg);
// Fill some properties randomly
......
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