From 2ec7bc878ea4a4b47cb90351eb7d50291098783a Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Tue, 29 Jan 2019 08:42:37 +0100 Subject: [PATCH] minor changes --- src/entt/core/ident.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entt/core/ident.hpp b/src/entt/core/ident.hpp index 0e77adae6..472b064f2 100644 --- a/src/entt/core/ident.hpp +++ b/src/entt/core/ident.hpp @@ -55,7 +55,7 @@ public: /*! @brief Statically generated unique identifier for the given type. */ template - inline static const identifier_type type = get>(std::make_index_sequence{}); + static constexpr identifier_type type = get>(std::make_index_sequence{}); };