From b2b6fef26c0b0e15575ee431eea60235d4565c34 Mon Sep 17 00:00:00 2001 From: Matthew Date: Mon, 8 Sep 2025 04:31:47 +1000 Subject: [PATCH] fix DLLPop being incorrectly named --- util.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.d b/util.d index 6a529ea..53996e0 100644 --- a/util.d +++ b/util.d @@ -134,7 +134,7 @@ ConcatInPlace(T)(T* list, T* to_concat) } U* -SLLPop(T, U)(T* list, T* nil) +DLLPop(T, U)(T* list, T* nil) { U* node = list.first;