Skip to content

Commit f32a792

Browse files
committed
---
yaml --- r: 150611 b: refs/heads/try2 c: dbeea14 h: refs/heads/master i: 150609: 941e28d 150607: a508ad2 v: v3
1 parent afbfc28 commit f32a792

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 5dacd1174d95732e2b2368896815781bbf891616
8+
refs/heads/try2: dbeea147ad1ec73590fdeafada895d0de2ad4278
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libsemver/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,17 @@ impl fmt::Show for Identifier {
7979
#[deriving(Clone)]
8080
pub struct Version {
8181
/// The major version, to be incremented on incompatible changes.
82-
pub major: uint,
82+
major: uint,
8383
/// The minor version, to be incremented when functionality is added in a
8484
/// backwards-compatible manner.
85-
pub minor: uint,
85+
minor: uint,
8686
/// The patch version, to be incremented when backwards-compatible bug
8787
/// fixes are made.
88-
pub patch: uint,
88+
patch: uint,
8989
/// The pre-release version identifier, if one exists.
90-
pub pre: Vec<Identifier>,
90+
pre: Vec<Identifier>,
9191
/// The build metadata, ignored when determining version precedence.
92-
pub build: Vec<Identifier>,
92+
build: Vec<Identifier>,
9393
}
9494

9595
impl fmt::Show for Version {

branches/try2/src/libstd/ty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl<T> Unsafe<T> {
6363

6464
/// Gets a mutable pointer to the wrapped value
6565
#[inline]
66-
pub unsafe fn get(&self) -> *mut T { cast::transmute(&self.value) }
66+
pub unsafe fn get(&self) -> *mut T { cast::transmute_mut_unsafe(&self.value) }
6767

6868
/// Unwraps the value
6969
#[inline]

0 commit comments

Comments
 (0)