From 5ee0bf997a370dfa5a1858f91bc3c8bca4ee60ed Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Wed, 19 Jul 2017 09:18:02 +0200 Subject: [PATCH] remove compiler warnings --- librs/src/runtime_glue.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/librs/src/runtime_glue.rs b/librs/src/runtime_glue.rs index 05b1c98bb..b3f9bb5d5 100644 --- a/librs/src/runtime_glue.rs +++ b/librs/src/runtime_glue.rs @@ -29,6 +29,8 @@ //! or something, but which we need to provide manually because we're on //! bare metal. +#![allow(private_no_mangle_fns)] + #[lang = "eh_personality"] extern "C" fn eh_personality() { }