Hide the __wbindgen_if_not_std macro from docs

This commit is contained in:
Alex Crichton 2018-07-06 20:04:49 -07:00
parent ef807a8068
commit 0e2e826182

View File

@ -487,12 +487,14 @@ pub mod __rt {
pub extern crate std;
#[macro_export]
#[doc(hidden)]
#[cfg(feature = "std")]
macro_rules! __wbindgen_if_not_std {
($($i:item)*) => {};
}
#[macro_export]
#[doc(hidden)]
#[cfg(not(feature = "std"))]
macro_rules! __wbindgen_if_not_std {
($($i:item)*) => ($($i)*)