Merge pull request #794 from Keats/master

Update float_cmp message
This commit is contained in:
Martin Carton 2016-03-24 18:13:02 +01:00
commit 4796ea0558

View File

@ -167,8 +167,9 @@ impl LateLintPass for FloatCmp {
span_lint(cx,
FLOAT_CMP,
expr.span,
&format!("{}-comparison of f32 or f64 detected. Consider changing this to `abs({} - {}) < \
epsilon` for some suitable value of epsilon",
&format!("{}-comparison of f32 or f64 detected. Consider changing this to `({} - {}).abs() < \
epsilon` for some suitable value of epsilon. \
std::f32::EPSILON and std::f64::EPSILON are available.",
binop_to_string(op),
snippet(cx, left.span, ".."),
snippet(cx, right.span, "..")));