Skip to content

Commit bc6c2d5

Browse files
committed
---
yaml --- r: 110173 b: refs/heads/auto c: dbeea14 h: refs/heads/master i: 110171: 66951b5 v: v3
1 parent 1363e5d commit bc6c2d5

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
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: 5dacd1174d95732e2b2368896815781bbf891616
16+
refs/heads/auto: dbeea147ad1ec73590fdeafada895d0de2ad4278
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/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/auto/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)