Skip to content

Commit

Permalink
[Minor] Fix last std.numeric.findRoot overload without tolerance de…
Browse files Browse the repository at this point in the history
…legate.
  • Loading branch information
denis-sh committed Mar 6, 2015
1 parent 0af21d7 commit 6227937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/numeric.d
Expand Up @@ -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);
}
Expand Down

0 comments on commit 6227937

Please sign in to comment.