You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although #1636 was fixed, using builder.clang_macro_fallback() does not work with macros that expand to values that do not fit in a u32. It is potentially related to #2618.
// header.h
#include <stdint.h>
#define FOO (UINT32_MAX)
#define BAR (UINT32_MAX)
// bindings.rs
pub const FOO: u32 = 4294967295;
The text was updated successfully, but these errors were encountered:
Although #1636 was fixed, using
builder.clang_macro_fallback()
does not work with macros that expand to values that do not fit in au32
. It is potentially related to #2618.The text was updated successfully, but these errors were encountered: