fix DLLPop being incorrectly named

This commit is contained in:
Matthew 2025-09-08 04:31:47 +10:00
parent 421f903cff
commit b2b6fef26c

2
util.d
View File

@ -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;