Michele Caini hace 6 años
padre
commit
9e44fdbc55
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/entt/entity/group.cpp

+ 1 - 1
test/entt/entity/group.cpp

@@ -933,7 +933,7 @@ TEST(OwningGroup, Less) {
         ASSERT_EQ(entity, entt);
     });
 
-    registry.group<double>(entt::get<int, char>).less([entity](const auto entt, int, char, double) {
+    registry.group<double>(entt::get<int, char>).less([entity](const auto entt, double, int, char) {
         ASSERT_EQ(entity, entt);
     });
 }