Update to the last Rust.

The `Bounded` trait is no longer on the Rust prelude.
This commit is contained in:
Sébastien Crozet 2014-01-16 08:17:02 +01:00
parent 98b2aa8b9c
commit 096cce413f
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
//! Traits giving structural informations on linear algebra objects or the space they live in.
use std::num::Zero;
use std::num::{Zero, Bounded};
use std::vec::{VecIterator, VecMutIterator};
use traits::operations::{RMul, LMul, ScalarAdd, ScalarSub};
use traits::geometry::{Dot, Norm, UniformSphereSample};