summaryrefslogtreecommitdiffstats
path: root/openpgp/src/fmt.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-12-08 17:40:11 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-12-08 17:40:11 +0100
commit12741c1d0e8b0801f6dfb5963efabef069236ffd (patch)
tree13ba49beae14e31ab0b323d8a52d6464f86b30fd /openpgp/src/fmt.rs
parent2a82a8d796caa1fec466c7e9d8b7f4868a7665a5 (diff)
openpgp: Tweak the assert_send_and_sync macro.
- Declare trait bounds using a where clause. It looks a bit odd if there is no bound, but not worse than before.
Diffstat (limited to 'openpgp/src/fmt.rs')
-rw-r--r--openpgp/src/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/fmt.rs b/openpgp/src/fmt.rs
index b748f8a2..783c1885 100644
--- a/openpgp/src/fmt.rs
+++ b/openpgp/src/fmt.rs
@@ -61,7 +61,7 @@ pub mod hex {
offset: usize,
}
- assert_send_and_sync!(Dumper<W>, W: io::Write);
+ assert_send_and_sync!(Dumper<W> where W: io::Write);
impl<W: io::Write> Dumper<W> {
/// Creates a new dumper.