aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.rs
diff options
context:
space:
mode:
authorDirk Van Haerenborgh <vhdirk@gmail.com>2018-04-14 11:49:00 +0200
committerDirk Van Haerenborgh <vhdirk@gmail.com>2018-04-14 11:49:00 +0200
commit2601c34228f88b572642149a8fef64a6a3e3570c (patch)
tree63fb4de11439fe2939a72af3b31541aae268878e /src/thread.rs
parent096a1e7443e2dcd301f08645074af19a878b3905 (diff)
downloadmail-2601c34228f88b572642149a8fef64a6a3e3570c.tar.gz
make everything Send+Sync
Diffstat (limited to 'src/thread.rs')
-rw-r--r--src/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.rs b/src/thread.rs
index ef6023d..ee19c7e 100644
--- a/src/thread.rs
+++ b/src/thread.rs
@@ -117,4 +117,4 @@ impl<'q, 'd> ops::Drop for Thread<'q, 'd> {
}
unsafe impl<'q, 'd> Send for Thread<'q, 'd> {}
-// unsafe impl<'q, 'd> Sync for Thread<'q, 'd> {}
+unsafe impl<'q, 'd> Sync for Thread<'q, 'd> {}