mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Revert "Avoid calling a nonstandard write! macro that might be in scope"
This reverts commit 264b7d1936
.
This commit is contained in:
parent
305be4a979
commit
900f018988
2 changed files with 1 additions and 3 deletions
|
@ -197,7 +197,7 @@ impl ToTokens for Display<'_> {
|
|||
let fmt = &self.fmt;
|
||||
let args = &self.args;
|
||||
tokens.extend(quote! {
|
||||
thiserror::__private::write!(__formatter, #fmt #args)
|
||||
write!(__formatter, #fmt #args)
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -252,6 +252,4 @@ pub mod __private {
|
|||
pub use crate::display::{DisplayAsDisplay, PathAsDisplay};
|
||||
#[cfg(provide_any)]
|
||||
pub use crate::provide::ThiserrorProvide;
|
||||
|
||||
pub use std::write;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue