From d3078699d689de85ae541fa9a23392a48df5b02a Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Fri, 22 Mar 2019 15:56:19 +0100 Subject: [PATCH] type_list is now an empty type --- src/entt/core/type_traits.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/entt/core/type_traits.hpp b/src/entt/core/type_traits.hpp index d43aab8b5..0bcd6c0b6 100644 --- a/src/entt/core/type_traits.hpp +++ b/src/entt/core/type_traits.hpp @@ -2,7 +2,6 @@ #define ENTT_CORE_TYPE_TRAITS_HPP -#include #include #include "../core/hashed_string.hpp" @@ -12,7 +11,7 @@ namespace entt { /*! @brief A class to use to push around lists of types, nothing more. */ template -using type_list = std::tuple; +struct type_list {}; /*! @brief Traits class used mainly to push things across boundaries. */