addressed Trevis CI error

This commit is contained in:
Stefan Mesken 2019-04-08 22:32:26 +02:00 committed by Sébastien Crozet
parent 5392b936d1
commit cb459d4493
1 changed files with 2 additions and 2 deletions

View File

@ -308,7 +308,7 @@ impl<N: Scalar, R: Dim, C: Dim, S: Storage<N, R, C>> Matrix<N, R, C, S> {
}
/// Removes all columns in `indices`
#[inline]
#[cfg(any(feature = "std", feature = "alloc"))]
pub fn remove_columns_at(self, indices: &[usize]) -> MatrixMN<N, R, Dynamic>
where
C: DimSub<Dynamic, Output = Dynamic>,
@ -346,7 +346,7 @@ impl<N: Scalar, R: Dim, C: Dim, S: Storage<N, R, C>> Matrix<N, R, C, S> {
}
/// Removes all columns in `indices`
#[inline]
#[cfg(any(feature = "std", feature = "alloc"))]
pub fn remove_rows_at(self, indices: &[usize]) -> MatrixMN<N, Dynamic, C>
where
R: DimSub<Dynamic, Output = Dynamic>,