File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -1061,12 +1061,7 @@ class meta_func {
10611061 const meta_ctx *ctx{&locator<meta_ctx>::value_or ()};
10621062};
10631063
1064- /* *
1065- * @brief Checks if two objects refer to the same type.
1066- * @param lhs An object, either valid or not.
1067- * @param rhs An object, either valid or not.
1068- * @return False if the objects refer to the same node, true otherwise.
1069- */
1064+ /* ! @copydoc operator!=(const meta_data &, const meta_data &) */
10701065[[nodiscard]] inline bool operator !=(const meta_func &lhs, const meta_func &rhs) noexcept {
10711066 return !(lhs == rhs);
10721067}
@@ -1550,12 +1545,7 @@ class meta_type {
15501545 const meta_ctx *ctx{&locator<meta_ctx>::value_or ()};
15511546};
15521547
1553- /* *
1554- * @brief Checks if two objects refer to the same type.
1555- * @param lhs An object, either valid or not.
1556- * @param rhs An object, either valid or not.
1557- * @return False if the objects refer to the same node, true otherwise.
1558- */
1548+ /* ! @copydoc operator!=(const meta_data &, const meta_data &) */
15591549[[nodiscard]] inline bool operator !=(const meta_type &lhs, const meta_type &rhs) noexcept {
15601550 return !(lhs == rhs);
15611551}
You can’t perform that action at this time.
0 commit comments