Update to the last rust-nightly.

Version of rustc: 0.11.0-pre-nightly (e55f64f 2014-06-09 01:11:58 -0700).
This commit is contained in:
Sébastien Crozet 2014-06-09 21:03:36 +02:00
parent 370bc66f7a
commit efc2f46019
2 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ impl<N> DVec<N> {
} }
} }
impl<N> Container for DVec<N> { impl<N> Collection for DVec<N> {
#[inline] #[inline]
fn len(&self) -> uint { fn len(&self) -> uint {
self.at.len() self.at.len()

View File

@ -244,7 +244,7 @@ macro_rules! dim_impl(
macro_rules! container_impl( macro_rules! container_impl(
($t: ident) => ( ($t: ident) => (
impl<N> Container for $t<N> { impl<N> Collection for $t<N> {
#[inline] #[inline]
fn len(&self) -> uint { fn len(&self) -> uint {
Dim::dim(None::<$t<N>>) Dim::dim(None::<$t<N>>)