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 1
1
[package ]
2
2
name = " static-reflect"
3
- version = " 0.1.3 "
3
+ version = " 0.1.4 "
4
4
edition = " 2018"
5
5
description = " Static type information, giving a form of compile-time reflection"
6
6
license = " MIT"
Original file line number Diff line number Diff line change 3
3
/// See [TypeInfo::Extern](crate::types::TypeInfo::Extern)
4
4
#[ macro_export]
5
5
macro_rules! define_extern_type {
6
- ( $target: ident) => ( define_extern_type!( $target => $target) ; ) ;
6
+ ( $target: ident) => ( $crate :: define_extern_type!( $target => $target) ; ) ;
7
7
( $target: ty => $defined_path: path) => {
8
- impl :: static_reflect:: StaticReflect for $target {
8
+ unsafe impl :: static_reflect:: StaticReflect for $target {
9
9
const TYPE_INFO : $crate:: TypeInfo <' static > = $crate:: TypeInfo :: Extern {
10
10
name: stringify!( $defined_path)
11
11
} ;
You can’t perform that action at this time.
0 commit comments