Remove some invalid cfg(doc) code
This commit is contained in:
parent
83738a9b1c
commit
a59a1e7c2c
@ -448,22 +448,6 @@ mod prim_unit {}
|
|||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
impl () {}
|
impl () {}
|
||||||
|
|
||||||
// Fake impl that's only really used for docs.
|
|
||||||
#[cfg(doc)]
|
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
|
||||||
impl Clone for () {
|
|
||||||
fn clone(&self) -> Self {
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fake impl that's only really used for docs.
|
|
||||||
#[cfg(doc)]
|
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
|
||||||
impl Copy for () {
|
|
||||||
// empty
|
|
||||||
}
|
|
||||||
|
|
||||||
#[rustc_doc_primitive = "pointer"]
|
#[rustc_doc_primitive = "pointer"]
|
||||||
#[doc(alias = "ptr")]
|
#[doc(alias = "ptr")]
|
||||||
#[doc(alias = "*")]
|
#[doc(alias = "*")]
|
||||||
@ -1690,23 +1674,3 @@ mod prim_fn {}
|
|||||||
// See src/librustdoc/passes/collect_trait_impls.rs:collect_trait_impls
|
// See src/librustdoc/passes/collect_trait_impls.rs:collect_trait_impls
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
impl<Ret, T> fn(T) -> Ret {}
|
impl<Ret, T> fn(T) -> Ret {}
|
||||||
|
|
||||||
// Fake impl that's only really used for docs.
|
|
||||||
#[cfg(doc)]
|
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
|
||||||
#[doc(fake_variadic)]
|
|
||||||
/// This trait is implemented on function pointers with any number of arguments.
|
|
||||||
impl<Ret, T> Clone for fn(T) -> Ret {
|
|
||||||
fn clone(&self) -> Self {
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fake impl that's only really used for docs.
|
|
||||||
#[cfg(doc)]
|
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
|
||||||
#[doc(fake_variadic)]
|
|
||||||
/// This trait is implemented on function pointers with any number of arguments.
|
|
||||||
impl<Ret, T> Copy for fn(T) -> Ret {
|
|
||||||
// empty
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user