From a9333e3dd38e6a51627fffb973f7dde04144ce90 Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Tue, 5 Aug 2014 18:15:07 +0200 Subject: [PATCH] Fixed another 'in' parameter. --- source/dyaml/queue.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dyaml/queue.d b/source/dyaml/queue.d index 1030cd4..79f5868 100644 --- a/source/dyaml/queue.d +++ b/source/dyaml/queue.d @@ -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_);