diff options
| author | Aaron Turon <aturon@mozilla.com> | 2016-02-19 16:08:36 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2016-02-23 07:31:16 -0800 |
| commit | a92ee0f664c84545c3cba70644472ec3df23c1ee (patch) | |
| tree | 5a769fa94ccb4e5a1f9c0f783d6ed6c531106eb8 /src/libstd/collections | |
| parent | 28a3e8bb51cdeda4ee73296b827bfb208a0bff5b (diff) | |
| download | rust-a92ee0f664c84545c3cba70644472ec3df23c1ee.tar.gz rust-a92ee0f664c84545c3cba70644472ec3df23c1ee.zip | |
Register new snapshots
Diffstat (limited to 'src/libstd/collections')
| -rw-r--r-- | src/libstd/collections/hash/map.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs index 7220690469c..051829fbafb 100644 --- a/src/libstd/collections/hash/map.rs +++ b/src/libstd/collections/hash/map.rs @@ -1402,13 +1402,13 @@ pub enum Entry<'a, K: 'a, V: 'a> { /// An occupied Entry. #[stable(feature = "rust1", since = "1.0.0")] Occupied( - #[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] OccupiedEntry<'a, K, V> + #[stable(feature = "rust1", since = "1.0.0")] OccupiedEntry<'a, K, V> ), /// A vacant Entry. #[stable(feature = "rust1", since = "1.0.0")] Vacant( - #[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] VacantEntry<'a, K, V> + #[stable(feature = "rust1", since = "1.0.0")] VacantEntry<'a, K, V> ), } |
