Revert "Avoid calling a nonstandard write! macro that might be in scope"

This reverts commit 264b7d1936.
This commit is contained in:
David Tolnay 2023-07-06 17:14:10 -07:00
parent 305be4a979
commit 900f018988
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 1 additions and 3 deletions

View file

@ -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)
});
}
}

View file

@ -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;
}