Skip to content

Commit 40fa412

Browse files
committed
---
yaml --- r: 83454 b: refs/heads/try c: e94b3fa h: refs/heads/master v: v3
1 parent c25c0d2 commit 40fa412

File tree

6 files changed

+537
-464
lines changed

6 files changed

+537
-464
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 0e4d1fc8cae42e15e00f71d9f439b01bb25a86ae
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6c08cc2db4f98e9f07ae7d50338396c4123c2f0a
5-
refs/heads/try: d8957e6332224919d80e1518a850109308e4ce73
5+
refs/heads/try: e94b3fae397a39d0cb7371768631f6e0e975b5b4
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*.cpp rust
55
*.h rust
66
*.rs rust
7-
src/etc/pkg/rust-logo.ico binary
87
src/rt/msvc/* -whitespace
98
src/rt/vg/* -whitespace
109
src/rt/linenoise/* -whitespace
-2 Bytes
Binary file not shown.

branches/try/src/libextra/url.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use std::to_bytes;
2121
use std::uint;
2222

2323
#[deriving(Clone, Eq)]
24-
pub struct Url {
24+
struct Url {
2525
scheme: ~str,
2626
user: Option<UserInfo>,
2727
host: ~str,
@@ -32,7 +32,7 @@ pub struct Url {
3232
}
3333

3434
#[deriving(Clone, Eq)]
35-
pub struct UserInfo {
35+
struct UserInfo {
3636
user: ~str,
3737
pass: Option<~str>
3838
}

branches/try/src/libstd/rt/io/mem.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ impl Decorator<~[u8]> for MemReader {
128128

129129

130130
/// Writes to a fixed-size byte slice
131-
pub struct BufWriter<'self> {
131+
struct BufWriter<'self> {
132132
buf: &'self mut [u8],
133133
pos: uint
134134
}
@@ -156,7 +156,7 @@ impl<'self> Seek for BufWriter<'self> {
156156

157157

158158
/// Reads from a fixed-size byte slice
159-
pub struct BufReader<'self> {
159+
struct BufReader<'self> {
160160
buf: &'self [u8],
161161
pos: uint
162162
}

0 commit comments

Comments
 (0)