mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 22:07:37 +03:00
Merge pull request #242 from dtolnay/stdwrite
Fix access to `write!` macro when `thiserror` is not in scope
This commit is contained in:
commit
f6dc5e54e2
2 changed files with 1 additions and 3 deletions
|
@ -197,7 +197,7 @@ impl ToTokens for Display<'_> {
|
||||||
let fmt = &self.fmt;
|
let fmt = &self.fmt;
|
||||||
let args = &self.args;
|
let args = &self.args;
|
||||||
tokens.extend(quote! {
|
tokens.extend(quote! {
|
||||||
thiserror::__private::write!(__formatter, #fmt #args)
|
std::write!(__formatter, #fmt #args)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -252,6 +252,4 @@ pub mod __private {
|
||||||
pub use crate::display::{DisplayAsDisplay, PathAsDisplay};
|
pub use crate::display::{DisplayAsDisplay, PathAsDisplay};
|
||||||
#[cfg(provide_any)]
|
#[cfg(provide_any)]
|
||||||
pub use crate::provide::ThiserrorProvide;
|
pub use crate::provide::ThiserrorProvide;
|
||||||
|
|
||||||
pub use std::write;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue