LiteLoaderBDS-1.16.40/LiteLoader/third-party/include/entt/poly/fwd.hpp
2023-03-01 23:21:09 -08:00

21 lines
395 B
C++

#ifndef ENTT_POLY_FWD_HPP
#define ENTT_POLY_FWD_HPP
#include <cstddef>
namespace entt {
template<typename, std::size_t Len = sizeof(double[2]), std::size_t = alignof(double[2])>
class basic_poly;
/**
* @brief Alias declaration for the most common use case.
* @tparam Concept Concept descriptor.
*/
template<typename Concept>
using poly = basic_poly<Concept>;
} // namespace entt
#endif