Skip to content

Commit

Permalink
Update to the last Rust api.
Browse files Browse the repository at this point in the history
RngUtils is dead.
rustdoc_ng became rustdoc.
  • Loading branch information
sebcrozet committed Sep 22, 2013
1 parent 4ffe274 commit 410bbd1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bench:

doc:
mkdir -p $(nalgebra_doc_path)
rustdoc_ng html src/lib.rs
rustdoc html src/lib.rs

distcheck:
rm -rf $(tmp)
Expand Down
2 changes: 1 addition & 1 deletion src/adaptors/rotmat.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::num::{One, Zero};
use std::rand::{Rand, Rng, RngUtil};
use std::rand::{Rand, Rng};
use std::cmp::ApproxEq;
use traits::geometry::{Cross, Rotation, Rotate, RotationMatrix, AbsoluteRotate, Transform,
ToHomogeneous, Norm};
Expand Down
2 changes: 1 addition & 1 deletion src/adaptors/transform.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::num::{One, Zero};
use std::rand::{Rand, Rng, RngUtil};
use std::rand::{Rand, Rng};
use std::cmp::ApproxEq;
use traits::structure::{Dim, Mat, Col};
use traits::operations::{Absolute, Inv, RMul};
Expand Down

0 comments on commit 410bbd1

Please sign in to comment.