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))) {