Commit 545377ab authored by unknown's avatar unknown

Unused method removed.

parent 4632f33d
...@@ -258,25 +258,6 @@ public: ...@@ -258,25 +258,6 @@ public:
return tmp->info; return tmp->info;
} }
/**
Cut the list with leaving not more then n elements
*/
inline uint cut(uint n)
{
list_node *element= first;
uint i= 0;
for (;
i < n && element != &end_of_list;
element= element->next, i++);
if (element != &end_of_list)
{
elements= i + 1;
last= &element->next;
element->next= &end_of_list;
}
return i + 1;
}
/* /*
Remove from this list elements that are contained in the passed list. Remove from this list elements that are contained in the passed list.
We assume that the passed list is a tail of this list (that is, the whole We assume that the passed list is a tail of this list (that is, the whole
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment