From 53c80bc72b1de9e080f24bcbe99c63cb0fe07896 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 9 Jan 2015 22:48:59 +0100 Subject: [PATCH] Allow unstable items. Some of them don't have any stable equivalent yet. --- src/lib.rs | 2 +- tests/assert.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 0a2f50ed..890879fa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -81,7 +81,7 @@ Feel free to add your project to this list if you happen to use **nalgebra**! #![deny(non_upper_case_globals)] #![deny(unused_qualifications)] #![deny(unused_results)] -// #![allow(unstable)] + #![allow(unstable)] #![warn(missing_docs)] #![feature(old_orphan_check)] #![feature(unboxed_closures)] diff --git a/tests/assert.rs b/tests/assert.rs index 0b0ebcee..6c7b0f49 100644 --- a/tests/assert.rs +++ b/tests/assert.rs @@ -1,6 +1,7 @@ //! Assertion macro tests #![feature(plugin)] +#![allow(unstable)] #[plugin] #[macro_use]