Merge remote-tracking branch 'origin/main'
| -rw-r--r-- | src/protocol.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol.rs b/src/protocol.rs index 0c20eec..f411556 100644 --- a/src/protocol.rs +++ b/src/protocol.rs @@ -92,8 +92,8 @@ macro_rules! implementer { { match id { $(id if id == $crate::any::LtTypeId::of::<$protocol>() - => Some($crate::any::IndirectLtAny::<$a, $ctx, _>::new::<$protocol>(self as _)),)* - _ => None + => ::core::option::Option::Some($crate::any::IndirectLtAny::<$a, $ctx, _>::new::<$protocol>(self as _)),)* + _ => ::core::option::Option::None } } } |