From 61e5bcef2629e2d68b805a956a96fff264d4f74d Mon Sep 17 00:00:00 2001 From: untodesu Date: Sat, 28 Jun 2025 01:59:49 +0500 Subject: Restructure dependencies and update to C++20 - Nuked static_assert from almost everywhere in the project - Nuked binary dependency support. Might add one later though - Separated dependency headers into a separate include subdirectory - Grafted a thirdpartylegalnotices.txt generator from RITEG - Pushed development snapshot version to 2126 (26th week of 2025) --- deps/include/entt/entity/component.hpp | 56 ---------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 deps/include/entt/entity/component.hpp (limited to 'deps/include/entt/entity/component.hpp') diff --git a/deps/include/entt/entity/component.hpp b/deps/include/entt/entity/component.hpp deleted file mode 100644 index 7b17827..0000000 --- a/deps/include/entt/entity/component.hpp +++ /dev/null @@ -1,56 +0,0 @@ -#ifndef ENTT_ENTITY_COMPONENT_HPP -#define ENTT_ENTITY_COMPONENT_HPP - -#include -#include -#include "../config/config.h" -#include "fwd.hpp" - -namespace entt { - -/*! @cond TURN_OFF_DOXYGEN */ -namespace internal { - -template -struct in_place_delete: std::bool_constant && std::is_move_assignable_v)> {}; - -template<> -struct in_place_delete: std::false_type {}; - -template -struct in_place_delete> - : std::true_type {}; - -template -struct page_size: std::integral_constant * ENTT_PACKED_PAGE> {}; - -template<> -struct page_size: std::integral_constant {}; - -template -struct page_size> - : std::integral_constant {}; - -} // namespace internal -/*! @endcond */ - -/** - * @brief Common way to access various properties of components. - * @tparam Type Type of component. - */ -template -struct component_traits { - static_assert(std::is_same_v, Type>, "Unsupported type"); - - /*! @brief Component type. */ - using type = Type; - - /*! @brief Pointer stability, default is `false`. */ - static constexpr bool in_place_delete = internal::in_place_delete::value; - /*! @brief Page size, default is `ENTT_PACKED_PAGE` for non-empty types. */ - static constexpr std::size_t page_size = internal::page_size::value; -}; - -} // namespace entt - -#endif -- cgit