Remove stability annotations from trait impl items

Remove `stable` stability annotations from inherent impls
This commit is contained in:
Vadim Petrochenkov
2015-11-06 00:13:46 +03:00
parent 7839827a39
commit 2ef07f0519
30 changed files with 0 additions and 39 deletions

View File

@@ -133,7 +133,6 @@ macro_rules! default_impl {
#[stable(feature = "rust1", since = "1.0.0")]
impl Default for $t {
#[inline]
#[stable(feature = "rust1", since = "1.0.0")]
fn default() -> $t { $v }
}
}