Macro build_helper::warning [] [src]

macro_rules! warning {
    ($($args:tt)*) => { ... };
}

Instructs Cargo to display a warning.

warning!(..) is shorthand for build_helper::warning(&format!(..)).