Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #73

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions ndstruct/src/coo/coo_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,4 @@ impl Display for CooError {
}
}

#[cfg(feature = "std")]
impl std::error::Error for CooError {}
impl core::error::Error for CooError {}
3 changes: 1 addition & 2 deletions ndstruct/src/csl/csl_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,4 @@ impl Display for CslError {
}
}

#[cfg(feature = "std")]
impl std::error::Error for CslError {}
impl core::error::Error for CslError {}
3 changes: 1 addition & 2 deletions ndstruct/src/csl/csl_line_constructor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,4 @@ impl Display for CslLineConstructorError {
}
}

#[cfg(feature = "std")]
impl std::error::Error for CslLineConstructorError {}
impl core::error::Error for CslLineConstructorError {}
3 changes: 1 addition & 2 deletions ndstruct/src/dense/dense_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ impl Display for DenseError {
}
}

#[cfg(feature = "std")]
impl std::error::Error for DenseError {}
impl core::error::Error for DenseError {}
3 changes: 1 addition & 2 deletions ndstruct/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ impl Display for Error {
}
}

#[cfg(feature = "std")]
impl std::error::Error for Error {}
impl core::error::Error for Error {}

impl From<cl_aux::Error> for Error {
#[inline]
Expand Down
Loading