From dc4bf487e9dfe5bcaf7be2e73aa0fa0d3f6c0e20 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Thu, 14 Mar 2024 22:39:16 +0100 Subject: [PATCH] DPL: make helper for typeId consteval --- Framework/Foundation/include/Framework/TypeIdHelpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Foundation/include/Framework/TypeIdHelpers.h b/Framework/Foundation/include/Framework/TypeIdHelpers.h index d4f72b8f3f7ff..2336e5dd7b8e0 100644 --- a/Framework/Foundation/include/Framework/TypeIdHelpers.h +++ b/Framework/Foundation/include/Framework/TypeIdHelpers.h @@ -72,7 +72,7 @@ constexpr static std::string_view type_name() struct TypeIdHelpers { template - constexpr static uint32_t uniqueId() + consteval static uint32_t uniqueId() { #ifdef __CLING__ constexpr uint32_t r = crc32(unique_type_id_v.data(), unique_type_id_v.size());