diff options
| author | Kevin Butler <haqkrs@gmail.com> | 2014-05-30 17:07:16 +0100 |
|---|---|---|
| committer | Kevin Butler <haqkrs@gmail.com> | 2014-05-30 17:59:41 +0100 |
| commit | 030b3a2499a73a6d3b4629ad676d2d9cd6a79df0 (patch) | |
| tree | 3f91ec213f4f8bd4a4b1e9679a59dec5b6529dbb /src/liblibc/lib.rs | |
| parent | 09fc34066b202ce454c3230368de63be621be98c (diff) | |
| download | rust-030b3a2499a73a6d3b4629ad676d2d9cd6a79df0.tar.gz rust-030b3a2499a73a6d3b4629ad676d2d9cd6a79df0.zip | |
windows: Allow snake_case errors for now.
Diffstat (limited to 'src/liblibc/lib.rs')
| -rw-r--r-- | src/liblibc/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 7b6a9122d90..3a9f8bc863b 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2012 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. // @@ -71,6 +71,7 @@ */ #![allow(non_camel_case_types)] +#![allow(non_snake_case_functions)] #![allow(non_uppercase_statics)] #![allow(missing_doc)] #![allow(uppercase_variables)] |
