diff --git a/src/entt/meta/container.hpp b/src/entt/meta/container.hpp index 00c283286..741780a2c 100644 --- a/src/entt/meta/container.hpp +++ b/src/entt/meta/container.hpp @@ -160,17 +160,16 @@ struct basic_meta_associative_container_traits { /** * @brief Meta sequence container traits for `std::vector`s of any type. - * @tparam Type The type of elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_sequence_container_traits> - : internal::basic_meta_sequence_container_traits> {}; +template +struct meta_sequence_container_traits> + : internal::basic_meta_sequence_container_traits> {}; /** * @brief Meta sequence container traits for `std::array`s of any type. - * @tparam Type The type of elements. - * @tparam N The number of elements. + * @tparam Type Template arguments for the container. + * @tparam N Template arguments for the container. */ template struct meta_sequence_container_traits> @@ -178,80 +177,69 @@ struct meta_sequence_container_traits> /** * @brief Meta sequence container traits for `std::list`s of any type. - * @tparam Type The type of elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_sequence_container_traits> - : internal::basic_meta_sequence_container_traits> {}; +template +struct meta_sequence_container_traits> + : internal::basic_meta_sequence_container_traits> {}; /** * @brief Meta sequence container traits for `std::deque`s of any type. - * @tparam Type The type of elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_sequence_container_traits> - : internal::basic_meta_sequence_container_traits> {}; +template +struct meta_sequence_container_traits> + : internal::basic_meta_sequence_container_traits> {}; /** * @brief Meta associative container traits for `std::map`s of any type. - * @tparam Key The key type of elements. - * @tparam Value The value type of elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_associative_container_traits> - : internal::basic_meta_associative_container_traits> {}; +template +struct meta_associative_container_traits> + : internal::basic_meta_associative_container_traits> {}; /** * @brief Meta associative container traits for `std::unordered_map`s of any * type. - * @tparam Key The key type of elements. - * @tparam Value The value type of elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_associative_container_traits> - : internal::basic_meta_associative_container_traits> {}; +template +struct meta_associative_container_traits> + : internal::basic_meta_associative_container_traits> {}; /** * @brief Meta associative container traits for `std::set`s of any type. - * @tparam Key The type of elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_associative_container_traits> - : internal::basic_meta_associative_container_traits> {}; +template +struct meta_associative_container_traits> + : internal::basic_meta_associative_container_traits> {}; /** * @brief Meta associative container traits for `std::unordered_set`s of any * type. - * @tparam Key The type of elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_associative_container_traits> - : internal::basic_meta_associative_container_traits> {}; +template +struct meta_associative_container_traits> + : internal::basic_meta_associative_container_traits> {}; /** * @brief Meta associative container traits for `dense_map`s of any type. - * @tparam Key The key type of the elements. - * @tparam Type The value type of the elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_associative_container_traits> - : internal::basic_meta_associative_container_traits> {}; +template +struct meta_associative_container_traits> + : internal::basic_meta_associative_container_traits> {}; /** * @brief Meta associative container traits for `dense_set`s of any type. - * @tparam Type The value type of the elements. - * @tparam Args Other arguments. + * @tparam Args Template arguments for the container. */ -template -struct meta_associative_container_traits> - : internal::basic_meta_associative_container_traits> {}; +template +struct meta_associative_container_traits> + : internal::basic_meta_associative_container_traits> {}; } // namespace entt