commit | 7081349148a36c3908d01868730f32d8acda543a | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Sun Feb 21 00:04:53 2021 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Sun Feb 21 00:04:53 2021 +0000 |
tree | 96e7eb8c0153edac20867f21fb1fa0e3d127c959 | |
parent | 26cdd4ae8d837d6a017199a9a1b910bd72d201f3 [diff] | |
parent | 1280ca5ea6ce05ee3b578a6a66473ff287745d9e [diff] |
Snap for 7160059 from 1280ca5ea6ce05ee3b578a6a66473ff287745d9e to sc-d1-release Change-Id: I8bb8a9cad020dbd781b1ee2ef0eb1a7c2259d093
A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted.
[dependencies] cfg-if = "0.1"
cfg_if::cfg_if! { if #[cfg(unix)] { fn foo() { /* unix specific functionality */ } } else if #[cfg(target_pointer_width = "32")] { fn foo() { /* non-unix, 32-bit functionality */ } } else { fn foo() { /* fallback implementation */ } } } fn main() { foo(); }
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in cfg-if
by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.