davey: add missing template keyword

This commit is contained in:
skypjack
2025-04-16 19:40:31 +02:00
parent de1ae66966
commit 3eb78a175e

View File

@@ -178,7 +178,7 @@ void storage_tab(const meta_ctx &ctx, const entt::basic_registry<Entity, Allocat
template<typename Entity, typename Allocator>
void entity_tab(const meta_ctx &ctx, const entt::basic_registry<Entity, Allocator> &registry) {
for(const auto [entt]: registry.storage<Entity>()->each()) {
for(const auto [entt]: registry.template storage<Entity>()->each()) {
ImGui::PushID(static_cast<int>(entt::to_entity(entt)));
if(ImGui::TreeNode(&entt::type_id<entt::entity>(), "%d [%d/%d]", entt::to_integral(entt), entt::to_entity(entt), entt::to_version(entt))) {