summaryrefslogtreecommitdiffstats
path: root/openpgp/src/armor.rs
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2020-12-08 09:25:51 +0100
committerAzul <azul@riseup.net>2020-12-08 12:51:56 +0100
commit15429e90e6ec1ff1401500f592e8698a89b8cceb (patch)
treededcf9ce6978172b93060366e7601150f04c8880 /openpgp/src/armor.rs
parent52794155913ce1fa78ce01a41b29c67e721e9847 (diff)
openpgp: Add assert_send_and_sync! for more types.
- With !928 merged more types are `Send` and `Sync` now. - See #627.
Diffstat (limited to 'openpgp/src/armor.rs')
-rw-r--r--openpgp/src/armor.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/openpgp/src/armor.rs b/openpgp/src/armor.rs
index 2852ac72..0c434070 100644
--- a/openpgp/src/armor.rs
+++ b/openpgp/src/armor.rs
@@ -173,7 +173,6 @@ pub struct Writer<W: Write> {
header: Vec<u8>,
dirty: bool,
}
-
assert_send_and_sync!{Writer<W>, W: Write}
impl<W: Write> Writer<W> {