From af463589ce254cfa596dd4c78a972ac3b11990fe Mon Sep 17 00:00:00 2001 From: Seo Sanghyeon Date: Sat, 26 Sep 2015 09:37:01 +0900 Subject: [PATCH] Remove #[repr(C)] on type It has no effect, and [will be an error soon](https://github.com/rust-lang/rust/pull/28650). --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7e840b4..8f70fc2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,6 @@ use libc::{c_void,c_uint,c_long,c_ulong,c_int,c_char,c_double,FILE}; pub static CUDD_TRUE: c_uint = 1; pub static CUDD_FALSE: c_uint = 0; -#[repr(C)] pub type CUDD_VALUE_TYPE = c_double; pub static CUDD_OUT_OF_MEM: c_int = -1;