I tried to use #[allow(non_camel_case_types, non_snake_case)] on some of my functions and structs that I've tagged with #[ffi_export] and #[derive_ReprC]. It looks as though adding the allow causes the proc macro to silently omit those items from the outputted source code.
I tried to use
#[allow(non_camel_case_types, non_snake_case)]
on some of my functions and structs that I've tagged with#[ffi_export]
and#[derive_ReprC]
. It looks as though adding theallow
causes the proc macro to silently omit those items from the outputted source code.