mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-19 06:49:38 +00:00
intrusive_list: Amend doxygen parameter documentation
This commit is contained in:
@@ -215,7 +215,7 @@ public:
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
DEBUG_ASSERT(it != end());
|
||||
@@ -234,7 +234,7 @@ public:
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
iterator copy = it;
|
||||
|
||||
Reference in New Issue
Block a user