diff --git a/src/core/model/attribute-accessor-helper.h b/src/core/model/attribute-accessor-helper.h index 2848c0ad8..770b0a01c 100644 --- a/src/core/model/attribute-accessor-helper.h +++ b/src/core/model/attribute-accessor-helper.h @@ -493,7 +493,7 @@ DoMakeAccessorHelperTwo (void (T::*setter)(U), /** * \ingroup attributeimpl - * \copydoc DoMakeAccessorHelperTwo(void(T::*)(U),V(T::*)(void)const) + * \copydoc DoMakeAccessorHelperTwo(void(T::*)(U),V(T::*)()const) */ template inline @@ -581,7 +581,7 @@ DoMakeAccessorHelperTwo (bool (T::*setter)(U), /** * \ingroup attributeimpl - * \copydoc ns3::DoMakeAccessorHelperTwo(bool(T::*)(U),V(T::*)(void)const) + * \copydoc ns3::DoMakeAccessorHelperTwo(bool(T::*)(U),V(T::*)()const) */ template inline diff --git a/src/core/model/make-event.h b/src/core/model/make-event.h index d1d7330c3..0a460c8f6 100644 --- a/src/core/model/make-event.h +++ b/src/core/model/make-event.h @@ -191,7 +191,7 @@ EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, EventImpl * MakeEvent (void (*f)()); /** - * \copybrief MakeEvent(void(*f)(void)) + * \copybrief MakeEvent(void(*f)()) * \tparam U1 \deduced Formal type of the argument to the function. * \tparam T1 \deduced Actual type of the argument to the function. * \param [in] f The function pointer. @@ -203,7 +203,7 @@ template