From 9cccc86f61bdd170f52d8360f5da56cbf527654e Mon Sep 17 00:00:00 2001 From: John Colvin Date: Fri, 2 Oct 2015 16:28:21 +0100 Subject: [PATCH] Update parallel_algorithm.d --- source/parallel_algorithm.d | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/parallel_algorithm.d b/source/parallel_algorithm.d index 32ff2c0..6b69ffa 100644 --- a/source/parallel_algorithm.d +++ b/source/parallel_algorithm.d @@ -10,6 +10,10 @@ version(unittest) { import std.random, std.typecons, std.math; } +void foo(){} +unittest { foo(); } +void bar(){} + private template finiteRandom(R) { enum bool finiteRandom = isRandomAccessRange!R && std.range.hasLength!R; }