From 9869ab7209dfba2cf775504ebdb20fd0388a8666 Mon Sep 17 00:00:00 2001 From: skypjack Date: Tue, 25 Nov 2025 15:29:10 +0100 Subject: [PATCH] resource: use std::identity instead of entt::identity --- src/entt/resource/cache.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entt/resource/cache.hpp b/src/entt/resource/cache.hpp index 8c5efcda4..c3747c010 100644 --- a/src/entt/resource/cache.hpp +++ b/src/entt/resource/cache.hpp @@ -154,7 +154,7 @@ class resource_cache { using alloc_traits = std::allocator_traits; static_assert(std::is_same_v, "Invalid value type"); using container_allocator = typename alloc_traits::template rebind_alloc>; - using container_type = dense_map, container_allocator>; + using container_type = dense_map, container_allocator>; public: /*! @brief Allocator type. */