Skip to content

Commit

Permalink
Merge pull request #357 from dtolnay/transparent
Browse files Browse the repository at this point in the history
Remove conditional on repr(transparent)
  • Loading branch information
dtolnay committed Mar 22, 2024
2 parents e18826b + 7676a69 commit b3ceb70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ pub use anyhow as format_err;
/// # Ok(())
/// }
/// ```
#[cfg_attr(not(doc), repr(transparent))]
#[repr(transparent)]
pub struct Error {
inner: Own<ErrorImpl>,
}
Expand Down

0 comments on commit b3ceb70

Please sign in to comment.