about summary refs log tree commit diff
path: root/src/libtest/stats.rs
diff options
context:
space:
mode:
authorOGINO Masanori <masanori.ogino@gmail.com>2014-07-31 07:56:39 +0900
committerAlex Crichton <alex@alexcrichton.com>2014-07-31 11:50:24 -0700
commitf86184869a95199a2e0da844ad257c67f1aac97a (patch)
tree5042e78e28e8a5fd15305690af86435d1b7f7b2e /src/libtest/stats.rs
parent2467c6e5a7fe008c33fdc1060a5ce869d6219a92 (diff)
downloadrust-f86184869a95199a2e0da844ad257c67f1aac97a.tar.gz
rust-f86184869a95199a2e0da844ad257c67f1aac97a.zip
alloc, arena, test, url, uuid: Elide lifetimes.
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
Diffstat (limited to 'src/libtest/stats.rs')
-rw-r--r--src/libtest/stats.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/stats.rs b/src/libtest/stats.rs
index d8f628e2196..9af28e771e1 100644
--- a/src/libtest/stats.rs
+++ b/src/libtest/stats.rs
@@ -164,7 +164,7 @@ impl<T: FloatMath + FromPrimitive> Summary<T> {
     }
 }
 
-impl<'a,T: FloatMath + FromPrimitive> Stats<T> for &'a [T] {
+impl<'a, T: FloatMath + FromPrimitive> Stats<T> for &'a [T] {
 
     // FIXME #11059 handle NaN, inf and overflow
     fn sum(self) -> T {