mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 05:58:01 +00:00
10 lines
243 B
Rust
10 lines
243 B
Rust
// No longer used. Old versions of serde used this macro for supporting targets
|
|
// that did not yet have 128-bit integer support.
|
|
#[macro_export]
|
|
#[doc(hidden)]
|
|
macro_rules! serde_if_integer128 {
|
|
($($tt:tt)*) => {
|
|
$($tt)*
|
|
};
|
|
}
|