From 62279377e41cd61bcbdc559aa8cc4ec14d7b7273 Mon Sep 17 00:00:00 2001 From: Denis Shelomovskij Date: Fri, 6 Mar 2015 19:51:25 +0300 Subject: [PATCH] [Minor] Fix last `std.numeric.findRoot` overload without tolerance delegate. --- std/numeric.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/numeric.d b/std/numeric.d index 63d8dfa6ba4..e8012620cdb 100644 --- a/std/numeric.d +++ b/std/numeric.d @@ -1163,7 +1163,7 @@ whileloop: } ///ditto -Tuple!(T, T, R, R) findRoot(T, R, DF, DT)(scope DF f, in T ax, in T bx, in R fax, in R fbx) +Tuple!(T, T, R, R) findRoot(T, R, DF)(scope DF f, in T ax, in T bx, in R fax, in R fbx) { return findRoot(f, ax, bx, fax, fbx, (T a, T b) => false); }