🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
477 B

  1. #ifndef ENTT_CORE_FWD_HPP
  2. #define ENTT_CORE_FWD_HPP
  3. #include <cstdint>
  4. #include <type_traits>
  5. #include "../config/config.h"
  6. namespace entt {
  7. template<std::size_t Len = sizeof(double[2]), std::size_t = alignof(typename std::aligned_storage_t<Len + !Len>)>
  8. class basic_any;
  9. /*! @brief Alias declaration for type identifiers. */
  10. using id_type = ENTT_ID_TYPE;
  11. /*! @brief Alias declaration for the most common use case. */
  12. using any = basic_any<>;
  13. } // namespace entt
  14. #endif