From 3eb78a175ec3e9f82467319e5aed7e4bee6aa993 Mon Sep 17 00:00:00 2001 From: skypjack Date: Wed, 16 Apr 2025 19:40:31 +0200 Subject: [PATCH] davey: add missing template keyword --- tools/entt/davey/davey.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/entt/davey/davey.hpp b/tools/entt/davey/davey.hpp index ce7e6dd01..a7edfc099 100644 --- a/tools/entt/davey/davey.hpp +++ b/tools/entt/davey/davey.hpp @@ -178,7 +178,7 @@ void storage_tab(const meta_ctx &ctx, const entt::basic_registry void entity_tab(const meta_ctx &ctx, const entt::basic_registry ®istry) { - for(const auto [entt]: registry.storage()->each()) { + for(const auto [entt]: registry.template storage()->each()) { ImGui::PushID(static_cast(entt::to_entity(entt))); if(ImGui::TreeNode(&entt::type_id(), "%d [%d/%d]", entt::to_integral(entt), entt::to_entity(entt), entt::to_version(entt))) {