From 0061b36a7727876c58b1b2c29cadc68d6047a03c Mon Sep 17 00:00:00 2001 From: Peter Atashian Date: Sat, 30 Aug 2014 01:24:32 -0400 Subject: [PATCH] Fix win64 regression introduced by #15773 Signed-off-by: Peter Atashian --- src/librustrt/unwind.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustrt/unwind.rs b/src/librustrt/unwind.rs index 08e182a6d6e..9de58960c5e 100644 --- a/src/librustrt/unwind.rs +++ b/src/librustrt/unwind.rs @@ -397,7 +397,7 @@ pub mod eabi { #[cfg(windows, target_arch = "x86_64", not(test))] #[doc(hidden)] #[allow(visible_private_types)] -#[allow(non_camel_case_types)] +#[allow(non_camel_case_types, non_snake_case)] pub mod eabi { use libunwind as uw; use libc::{c_void, c_int};