diff options
| author | Mazdak <twingoow@gmail.com> | 2018-01-19 02:41:58 +0100 |
|---|---|---|
| committer | Mazdak <twingoow@gmail.com> | 2018-01-19 02:41:58 +0100 |
| commit | 567f040c65808867936f61cfc47d2621a40278bb (patch) | |
| tree | 5693c7e6dd91683add11f18db63186a4b94b7613 /src/libstd | |
| parent | 651b25a27c2dc05460a86ba18b57d45d98d83aee (diff) | |
| download | rust-567f040c65808867936f61cfc47d2621a40278bb.tar.gz rust-567f040c65808867936f61cfc47d2621a40278bb.zip | |
fix prelude reexport of convert::id
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/prelude/v1.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/prelude/v1.rs b/src/libstd/prelude/v1.rs index 190304a1d3e..d256353ab30 100644 --- a/src/libstd/prelude/v1.rs +++ b/src/libstd/prelude/v1.rs @@ -24,8 +24,8 @@ #[stable(feature = "rust1", since = "1.0.0")] #[doc(no_inline)] pub use mem::drop; #[unstable(feature = "convert_id_prelude", issue = "0")] -#[inline] -#[doc(no_inline)] pub use convert::id; +#[doc(no_inline)] +pub use convert::id; // Re-exported types and traits #[stable(feature = "rust1", since = "1.0.0")] |
