Fix ruma_identifiers::device_id!

This commit is contained in:
Jonas Platte 2020-09-03 20:23:16 +02:00
parent 03c636caf0
commit 19af16850c
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -85,7 +85,7 @@ where
#[macro_export] #[macro_export]
macro_rules! device_id { macro_rules! device_id {
($s:tt) => { ($s:tt) => {
::std::boxed::Box<$crate::DeviceId>::from($s) ::std::boxed::Box::<$crate::DeviceId>::from($s)
}; };
} }