luaur_common/macros/luau_fastint.rs
1//! `LUAU_FASTINT(flag)` — forward-declares an int FastFlag defined in another
2//! translation unit. Reference: `luau/Common/include/Luau/Common.h`. Expands to
3//! nothing (the flag is a `pub static` reached by path); see
4//! [`crate::macros::luau_fastflag`].
5
6#[allow(non_snake_case)]
7#[macro_export]
8macro_rules! LUAU_FASTINT {
9 ($flag:ident) => {};
10}
11
12pub use LUAU_FASTINT;