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) {
418
418
counter on_destroy{};
419
419
420
420
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);
423
423
424
424
pool.reserve (1u );
425
425
@@ -481,8 +481,8 @@ TEST(SighStorageMixin, ThrowingAllocator) {
481
481
counter on_destroy{};
482
482
483
483
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);
486
486
487
487
pool_allocator_type::trigger_on_allocate = true ;
488
488
You can’t perform that action at this time.
0 commit comments