File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " static-reflect"
3- version = " 0.1.3 "
3+ version = " 0.1.4 "
44edition = " 2018"
55description = " Static type information, giving a form of compile-time reflection"
66license = " MIT"
Original file line number Diff line number Diff line change 33/// See [TypeInfo::Extern](crate::types::TypeInfo::Extern)
44#[ macro_export]
55macro_rules! define_extern_type {
6- ( $target: ident) => ( define_extern_type!( $target => $target) ; ) ;
6+ ( $target: ident) => ( $crate :: define_extern_type!( $target => $target) ; ) ;
77 ( $target: ty => $defined_path: path) => {
8- impl :: static_reflect:: StaticReflect for $target {
8+ unsafe impl :: static_reflect:: StaticReflect for $target {
99 const TYPE_INFO : $crate:: TypeInfo <' static > = $crate:: TypeInfo :: Extern {
1010 name: stringify!( $defined_path)
1111 } ;
You can’t perform that action at this time.
0 commit comments