1
Fork 0

Revert "Implement pattern ranges for all numeric types."

This reverts commit ce0f054f9d.
This commit is contained in:
Marijn Haverbeke 2011-09-21 17:31:43 +02:00
parent 410f73fdb2
commit a034f87146
14 changed files with 25 additions and 451 deletions

View file

@ -69,7 +69,7 @@ iter pat_bindings(pat: @pat) -> @pat {
for elt in elts { for each b in pat_bindings(elt) { put b; } }
}
pat_box(sub) { for each b in pat_bindings(sub) { put b; } }
pat_wild. | pat_lit(_) | pat_range(_, _) { }
pat_wild. | pat_lit(_) { }
}
}
@ -229,4 +229,3 @@ fn ret_by_ref(style: ret_style) -> bool {
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End: