From c766640ef8a8e8657dcb0042103a087bb01418b3 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Wed, 13 Mar 2024 10:46:13 +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());