lib: ';' to ',' in enums in more places
This commit is contained in:
parent
2d2bdfe845
commit
6222e98dda
5 changed files with 12 additions and 12 deletions
|
|
@ -113,8 +113,8 @@ mod chained {
|
|||
};
|
||||
|
||||
enum chain<K, V> {
|
||||
present(@entry<K, V>);
|
||||
absent;
|
||||
present(@entry<K, V>),
|
||||
absent,
|
||||
}
|
||||
|
||||
type t<K, V> = {
|
||||
|
|
@ -125,9 +125,9 @@ mod chained {
|
|||
};
|
||||
|
||||
enum search_result<K, V> {
|
||||
not_found;
|
||||
found_first(uint, @entry<K,V>);
|
||||
found_after(@entry<K,V>, @entry<K,V>);
|
||||
not_found,
|
||||
found_first(uint, @entry<K,V>),
|
||||
found_after(@entry<K,V>, @entry<K,V>),
|
||||
}
|
||||
|
||||
fn search_rem<K: copy, V: copy>(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue