about summary refs log tree commit diff
path: root/src/libnative
diff options
context:
space:
mode:
authorKevin Butler <haqkrs@gmail.com>2014-05-30 17:07:16 +0100
committerKevin Butler <haqkrs@gmail.com>2014-05-30 17:59:41 +0100
commit030b3a2499a73a6d3b4629ad676d2d9cd6a79df0 (patch)
tree3f91ec213f4f8bd4a4b1e9679a59dec5b6529dbb /src/libnative
parent09fc34066b202ce454c3230368de63be621be98c (diff)
downloadrust-030b3a2499a73a6d3b4629ad676d2d9cd6a79df0.tar.gz
rust-030b3a2499a73a6d3b4629ad676d2d9cd6a79df0.zip
windows: Allow snake_case errors for now.
Diffstat (limited to 'src/libnative')
-rw-r--r--src/libnative/io/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libnative/io/mod.rs b/src/libnative/io/mod.rs
index 0c103bc4695..240b87fda08 100644
--- a/src/libnative/io/mod.rs
+++ b/src/libnative/io/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -21,6 +21,8 @@
 //! play. The only dependencies of these modules are the normal system libraries
 //! that you would find on the respective platform.
 
+#![allow(non_snake_case_functions)]
+
 use libc::c_int;
 use libc;
 use std::c_str::CString;