| commit | cd1430c5ef65932a24c7fd2fd478db16a8cb19e1 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Mon Dec 28 17:17:14 2020 -0800 |
| committer | David Tolnay <dtolnay@gmail.com> | Mon Dec 28 17:25:37 2020 -0800 |
| tree | b638aa511491433cbeb0071b7b59103bc0186c98 | |
| parent | 378cd6e5cabcf9a5496284b0a4d6bf7b8372e11a [diff] [blame] |
Add SharedPtr<bool>
diff --git a/src/shared_ptr.rs b/src/shared_ptr.rs index 2f75e23..9269e5a 100644 --- a/src/shared_ptr.rs +++ b/src/shared_ptr.rs
@@ -214,6 +214,7 @@ }; } +impl_shared_ptr_target_for_primitive!(bool); impl_shared_ptr_target_for_primitive!(u8); impl_shared_ptr_target_for_primitive!(u16); impl_shared_ptr_target_for_primitive!(u32);