diff --git a/src/base/allocator.rs b/src/base/allocator.rs index 77a08c9e..062ffbc2 100644 --- a/src/base/allocator.rs +++ b/src/base/allocator.rs @@ -30,16 +30,6 @@ pub trait Allocator: Any + Sized { ncols: C, iter: I, ) -> Self::Buffer; - - unsafe fn allocate_more( - nrows: R2, - ncols: C2, - ) -> mem::MaybeUninit<>::Buffer> - where - Self: Allocator, - { - >::allocate_uninitialized(nrows, ncols) - } } /// A matrix reallocator. Changes the size of the memory buffer that initially contains (RFrom × diff --git a/src/lib.rs b/src/lib.rs index c593d0a2..9d711680 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,7 +80,7 @@ an optimized set of tools for computer graphics and physics. Those features incl #![deny(non_upper_case_globals)] #![deny(unused_qualifications)] #![deny(unused_results)] -// #![deny(missing_docs)] +#![deny(missing_docs)] #![doc( html_favicon_url = "https://nalgebra.org/img/favicon.ico", html_root_url = "https://docs.rs/nalgebra/0.25.0"