From c2cf71fcd93de9a933b2cf768e16df746cd274f1 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 12 Apr 2022 14:32:44 -0400 Subject: [PATCH] fix bug in Assert() macro --- include/deal.II/particles/particle_accessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5