From efc2f460191ed54fc9c3c821fd85be052a858d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Mon, 9 Jun 2014 21:03:36 +0200 Subject: [PATCH] Update to the last rust-nightly. Version of rustc: 0.11.0-pre-nightly (e55f64f 2014-06-09 01:11:58 -0700). --- src/structs/dvec.rs | 2 +- src/structs/vec_macros.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structs/dvec.rs b/src/structs/dvec.rs index 372a8cdd..58f43383 100644 --- a/src/structs/dvec.rs +++ b/src/structs/dvec.rs @@ -161,7 +161,7 @@ impl DVec { } } -impl Container for DVec { +impl Collection for DVec { #[inline] fn len(&self) -> uint { self.at.len() diff --git a/src/structs/vec_macros.rs b/src/structs/vec_macros.rs index 761a7c1f..fd4779c8 100644 --- a/src/structs/vec_macros.rs +++ b/src/structs/vec_macros.rs @@ -244,7 +244,7 @@ macro_rules! dim_impl( macro_rules! container_impl( ($t: ident) => ( - impl Container for $t { + impl Collection for $t { #[inline] fn len(&self) -> uint { Dim::dim(None::<$t>)