From 9810a411481b1920cb574951512e6c68abb3e9ef Mon Sep 17 00:00:00 2001 From: AriAvery <41122212+AriAvery@users.noreply.github.com> Date: Sun, 23 Apr 2023 20:24:01 +0200 Subject: [PATCH] Update ExdData.h build fix(?!?) --- src/common/Exd/ExdData.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/Exd/ExdData.h b/src/common/Exd/ExdData.h index bf215970..f547115c 100644 --- a/src/common/Exd/ExdData.h +++ b/src/common/Exd/ExdData.h @@ -68,7 +68,7 @@ namespace Sapphire::Data } #else static std::unordered_map< std::type_index, std::string > demangle_cache; - auto type = typeid( T ); + auto type = std::type_index( typeid( T ) ); auto it = demangle_cache.find( type ); if( it != demangle_cache.end() ) {