Revert "Testing fmt CI check behind cuda feature flag."

This reverts commit b9605310b1.
This commit is contained in:
Nicolas Patry
2023-07-14 15:18:14 +00:00
parent b9605310b1
commit 3672e1a46f

View File

@ -106,8 +106,7 @@ trait WrapErr<O> {
impl<O, E: Into<CudaError>> WrapErr<O> for std::result::Result<O, E> { impl<O, E: Into<CudaError>> WrapErr<O> for std::result::Result<O, E> {
fn w(self) -> std::result::Result<O, crate::Error> { fn w(self) -> std::result::Result<O, crate::Error> {
self self.map_err(|e| crate::Error::Cuda(Box::new(e.into())))
.map_err(|e| crate::Error::Cuda(Box::new(e.into())))
} }
} }