From: Timo Heister Date: Tue, 12 Apr 2022 18:32:44 +0000 (-0400) Subject: fix bug in Assert() macro X-Git-Tag: v9.4.0-rc1~322^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2cf71fcd93de9a933b2cf768e16df746cd274f1;p=dealii.git fix bug in Assert() macro --- diff --git a/include/deal.II/particles/particle_accessor.h b/include/deal.II/particles/particle_accessor.h index d5a3b3b3ae..9df7620529 100644 --- a/include/deal.II/particles/particle_accessor.h +++ b/include/deal.II/particles/particle_accessor.h @@ -784,7 +784,7 @@ namespace Particles ParticleAccessor::set_property_pool( PropertyPool &new_property_pool) { - Assert(&new_property_pool = property_pool, ExcInternalError()); + Assert(&new_property_pool == property_pool, ExcInternalError()); (void)new_property_pool; }