Browse Source

doc: updated doc for type_seq and the like

Michele Caini 5 years ago
parent
commit
bc85817b07
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/entt/core/type_info.hpp

+ 3 - 3
src/entt/core/type_info.hpp

@@ -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(); }
 };