diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-31 11:41:18 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-31 15:56:33 -0700 |
| commit | 30532884f83c4346f736dee5df03e812bde94ddc (patch) | |
| tree | 26e7ae049d0edb282e07f98b3a5eb9367e42f022 /src/libcore/num | |
| parent | 554946c81eeb4fcfceda782f6c5af394ab3fe8d3 (diff) | |
| download | rust-30532884f83c4346f736dee5df03e812bde94ddc.tar.gz rust-30532884f83c4346f736dee5df03e812bde94ddc.zip | |
Test fixes and rebase conflicts, round 2
Diffstat (limited to 'src/libcore/num')
| -rw-r--r-- | src/libcore/num/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 64f8e7055a5..a4829ed96b3 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -46,7 +46,7 @@ use str::{FromStr, StrExt}; /// intended to have wrapping semantics. #[stable(feature = "rust1", since = "1.0.0")] #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Debug)] -pub struct Wrapping<T>(pub T); +pub struct Wrapping<T>(#[stable(feature = "rust1", since = "1.0.0")] pub T); #[unstable(feature = "core", reason = "may be removed or relocated")] pub mod wrapping; |
