type_info: updated documentation

This commit is contained in:
Michele Caini
2020-09-29 08:52:45 +02:00
parent 3721a1f90b
commit e4e38edf24

View File

@@ -141,19 +141,26 @@ class type_info final {
{}
public:
/*! Default constructor. */
/*! @brief Default constructor. */
type_info()
: type_info{nullptr, nullptr, nullptr}
{}
/*! Default copy constructor. */
/*! @brief Default copy constructor. */
type_info(const type_info &) = default;
/*! Default move constructor. */
/*! @brief Default move constructor. */
type_info(type_info &&) = default;
/*! Default copy assignment operator. */
/**
* @brief Default copy assignment operator.
* @return This type info object.
*/
type_info & operator=(const type_info &) = default;
/*! Default move assignment operator. */
/**
* @brief Default move assignment operator.
* @return This type info object.
*/
type_info & operator=(type_info &&) = default;
/**