diff options
| author | Kevin Butler <haqkrs@gmail.com> | 2014-05-26 00:27:36 +0100 |
|---|---|---|
| committer | Kevin Butler <haqkrs@gmail.com> | 2014-05-30 17:55:41 +0100 |
| commit | 190d8bdbc6df078e2dc65ccdb8ab17a99a4a6556 (patch) | |
| tree | 14e71c75fc23296a7681a319dbba0037a4c60261 /src/libsyntax/abi.rs | |
| parent | 16f15ce391b2b463d37ff7f5e764c7f55c33cc5d (diff) | |
| download | rust-190d8bdbc6df078e2dc65ccdb8ab17a99a4a6556.tar.gz rust-190d8bdbc6df078e2dc65ccdb8ab17a99a4a6556.zip | |
libsyntax: Fix snake_case errors.
A number of functions/methods have been moved or renamed to align better with rust standard conventions. syntax::ext::mtwt::xorPush => xor_push syntax::parse::parser::Parser => Parser::new [breaking-change]
Diffstat (limited to 'src/libsyntax/abi.rs')
| -rw-r--r-- | src/libsyntax/abi.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/abi.rs b/src/libsyntax/abi.rs index bc53d2bec8d..089cd772bb4 100644 --- a/src/libsyntax/abi.rs +++ b/src/libsyntax/abi.rs @@ -1,4 +1,4 @@ -// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT +// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // @@ -159,6 +159,7 @@ impl fmt::Show for Abi { } } +#[allow(non_snake_case_functions)] #[test] fn lookup_Rust() { let abi = lookup("Rust"); |
