intrusive_list: Amend doxygen parameter documentation
This commit is contained in:
parent
1c4868ccce
commit
c052f9f84c
1 changed files with 2 additions and 2 deletions
|
@ -215,7 +215,7 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes a node from this list
|
* Removes a node from this list
|
||||||
* @param node An iterator that points to the node to remove from list.
|
* @param it An iterator that points to the node to remove from list.
|
||||||
*/
|
*/
|
||||||
pointer remove(iterator& it) {
|
pointer remove(iterator& it) {
|
||||||
DEBUG_ASSERT(it != end());
|
DEBUG_ASSERT(it != end());
|
||||||
|
@ -234,7 +234,7 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes a node from this list
|
* Removes a node from this list
|
||||||
* @param node A constant iterator that points to the node to remove from list.
|
* @param it A constant iterator that points to the node to remove from list.
|
||||||
*/
|
*/
|
||||||
pointer remove(const iterator& it) {
|
pointer remove(const iterator& it) {
|
||||||
iterator copy = it;
|
iterator copy = it;
|
||||||
|
|
Loading…
Reference in a new issue