util/IntrusiveList: fix typos

This commit is contained in:
Max Kellermann 2022-11-11 10:11:41 +01:00
parent 84fd401d21
commit af544bb16f

View File

@ -559,7 +559,7 @@ public:
* given position.
*/
void splice(iterator position, IntrusiveList &from) noexcept {
spice(position, from, from.begin(), from.end(),
constant_time_size ? size() : 1);
splice(position, from, from.begin(), from.end(),
from.constant_time_size ? from.size() : 1);
}
};