From: Rene Gassmoeller Date: Sat, 5 May 2018 18:38:38 +0000 (-0700) Subject: Fix invalid number of particle properties in a test X-Git-Tag: v9.1.0-rc1~1211^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad2b6b8035cc28075d4e54f4ffdd1475da3aa616;p=dealii.git Fix invalid number of particle properties in a test --- diff --git a/tests/particles/particle_04.cc b/tests/particles/particle_04.cc index 99fabb67ec..49a6b6b0e0 100644 --- a/tests/particles/particle_04.cc +++ b/tests/particles/particle_04.cc @@ -55,7 +55,7 @@ void test () particle.write_data(write_pointer); const void *read_pointer = static_cast (&data.front()); - Particles::PropertyPool pool; + Particles::PropertyPool pool(0); const Particles::Particle new_particle(read_pointer,pool); deallog << "Copy particle location: " << new_particle.get_location() << std::endl