Fixed another 'in' parameter.

This commit is contained in:
Ferdinand Majerech 2014-08-05 18:15:07 +02:00
parent 9e573d85c7
commit a9333e3dd3

View file

@ -119,7 +119,7 @@ struct Queue(T)
}
/// Insert a new item putting it to specified index in the linked list.
void insert(T item, in size_t idx) @trusted nothrow
void insert(T item, const size_t idx) @trusted nothrow
in
{
assert(idx <= length_);