diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-07 19:21:36 -0700 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-10 07:01:07 -0700 |
| commit | fad7857c7b2c42da6081e593ab92d03d88643c81 (patch) | |
| tree | cca381ea03eab19ac755ab7166321d437fad86e5 /src/libsyntax/ast_util.rs | |
| parent | f0fc9c92ffab3bdb98fdd00c284a7f6541444e5a (diff) | |
| download | rust-fad7857c7b2c42da6081e593ab92d03d88643c81.tar.gz rust-fad7857c7b2c42da6081e593ab92d03d88643c81.zip | |
Mass rename of .consume{,_iter}() to .move_iter()
cc #7887
Diffstat (limited to 'src/libsyntax/ast_util.rs')
| -rw-r--r-- | src/libsyntax/ast_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast_util.rs b/src/libsyntax/ast_util.rs index 9a8a3bc25d8..0005180ef50 100644 --- a/src/libsyntax/ast_util.rs +++ b/src/libsyntax/ast_util.rs @@ -247,7 +247,7 @@ pub fn unguarded_pat(a: &arm) -> Option<~[@pat]> { } pub fn public_methods(ms: ~[@method]) -> ~[@method] { - do ms.consume_iter().filter |m| { + do ms.move_iter().filter |m| { match m.vis { public => true, _ => false |
