Skip to content

Commit

Permalink
Avoid underscore patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
afsalthaj committed Oct 3, 2024
1 parent 595cd7a commit db77bd6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion golem-rib/src/type_registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,10 @@ mod internal {
AnalysedType::Option(type_option) => {
update_registry(type_option.inner.as_ref(), registry);
}
AnalysedType::Result(_) => {}
AnalysedType::Result(TypeResult {
ok: None,
err: None,
}) => {}
AnalysedType::Flags(_) => {}
AnalysedType::Str(_) => {}
AnalysedType::Chr(_) => {}
Expand Down

0 comments on commit db77bd6

Please sign in to comment.