doc: updated doc for type_seq and the like

This commit is contained in:
Michele Caini
2021-02-22 16:39:42 +01:00
parent 1016394be5
commit bc85817b07

View File

@@ -98,7 +98,7 @@ struct ENTT_API type_seq final {
return value;
}
/*! @brief Conversion operator to the underlying type. */
/*! @copydoc value */
[[nodiscard]] constexpr operator id_type() const ENTT_NOEXCEPT { return value(); }
};
@@ -122,7 +122,7 @@ struct type_hash final {
#endif
}
/*! @brief Conversion operator to the underlying type. */
/*! @copydoc value */
[[nodiscard]] constexpr operator id_type() const ENTT_NOEXCEPT { return value(); }
};
@@ -141,7 +141,7 @@ struct type_name final {
return internal::type_name<Type>(0);
}
/*! @brief Conversion operator to the underlying type. */
/*! @copydoc value */
[[nodiscard]] constexpr operator std::string_view() const ENTT_NOEXCEPT { return value(); }
};