Use more widely supported arrow symbol in performance report

Fixes #360.
This commit is contained in:
Patrick Hilhorst 2019-05-08 16:14:24 +02:00
parent c9e110f054
commit 8a41517995
No known key found for this signature in database
GPG key ID: 589BB0A8DAFEF2B2

View file

@ -124,10 +124,10 @@ impl<'a> EvaluationStatsDiff<'a> {
if left > right {
diff = left - right;
direction = "🡖 ";
direction = " ";
} else if left < right {
diff = right - left;
direction = "🡕 ";
direction = " ";
} else {
diff = 0;
direction = "";
@ -157,10 +157,10 @@ impl<'a> EvaluationStatsDiff<'a> {
if left > right {
diff = left - right;
direction = "🡖 ";
direction = " ";
} else if left < right {
diff = right - left;
direction = "🡕 ";
direction = " ";
} else {
diff = 0.0;
direction = "";