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:
parent
370bc66f7a
commit
efc2f46019
|
@ -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()
|
||||||
|
|
|
@ -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>>)
|
||||||
|
|
Loading…
Reference in New Issue