Просмотр исходного кода

test: add missing template keywords (thanks msvc)

Michele Caini 3 лет назад
Родитель
Сommit
ebc0c18534
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      test/entt/entity/sigh_storage_mixin.cpp

+ 4 - 4
test/entt/entity/sigh_storage_mixin.cpp

@@ -418,8 +418,8 @@ TEST(SighStorageMixin, CustomAllocator) {
         counter on_destroy{};
 
         pool.bind(entt::forward_as_any(registry));
-        pool.on_construct().connect<&listener>(on_construct);
-        pool.on_destroy().connect<&listener>(on_destroy);
+        pool.on_construct().template connect<&listener>(on_construct);
+        pool.on_destroy().template connect<&listener>(on_destroy);
 
         pool.reserve(1u);
 
@@ -481,8 +481,8 @@ TEST(SighStorageMixin, ThrowingAllocator) {
         counter on_destroy{};
 
         pool.bind(entt::forward_as_any(registry));
-        pool.on_construct().connect<&listener>(on_construct);
-        pool.on_destroy().connect<&listener>(on_destroy);
+        pool.on_construct().template connect<&listener>(on_construct);
+        pool.on_destroy().template connect<&listener>(on_destroy);
 
         pool_allocator_type::trigger_on_allocate = true;