Skip to content

Commit 6cc4549

Browse files
committed
Fix function array
1 parent d513873 commit 6cc4549

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/generald/functions.d

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,6 +686,7 @@ class FunctionArray(A, B) : Function!(A, B[])
686686
B[] ret;
687687
foreach (f; fs)
688688
ret ~= f(x);
689+
return ret;
689690
}
690691
}
691692

@@ -906,4 +907,4 @@ unittest
906907
{
907908
import std.stdio;
908909
stderr.writeln("unittest passed!");
909-
}
910+
}

0 commit comments

Comments
 (0)