File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -418,8 +418,8 @@ TEST(SighStorageMixin, CustomAllocator) {
418418 counter on_destroy{};
419419
420420 pool.bind (entt::forward_as_any (registry));
421- pool.on_construct ().connect <&listener>(on_construct);
422- pool.on_destroy ().connect <&listener>(on_destroy);
421+ pool.on_construct ().template connect <&listener>(on_construct);
422+ pool.on_destroy ().template connect <&listener>(on_destroy);
423423
424424 pool.reserve (1u );
425425
@@ -481,8 +481,8 @@ TEST(SighStorageMixin, ThrowingAllocator) {
481481 counter on_destroy{};
482482
483483 pool.bind (entt::forward_as_any (registry));
484- pool.on_construct ().connect <&listener>(on_construct);
485- pool.on_destroy ().connect <&listener>(on_destroy);
484+ pool.on_construct ().template connect <&listener>(on_construct);
485+ pool.on_destroy ().template connect <&listener>(on_destroy);
486486
487487 pool_allocator_type::trigger_on_allocate = true ;
488488
You can’t perform that action at this time.
0 commit comments