Skip to content

Commit 393bb66

Browse files
committed
---
yaml --- r: 81891 b: refs/heads/master c: d8957e6 h: refs/heads/master i: 81889: 7727dbc 81887: 58d2b2e v: v3
1 parent 954c490 commit 393bb66

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 00db6f6e7be04882b67660adcf04811511d4b8c2
2+
refs/heads/master: d8957e6332224919d80e1518a850109308e4ce73
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6c08cc2db4f98e9f07ae7d50338396c4123c2f0a
55
refs/heads/try: 70152ff55722878cde684ee6462c14c65f2c4729

trunk/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-
struct Url {
24+
pub struct Url {
2525
scheme: ~str,
2626
user: Option<UserInfo>,
2727
host: ~str,
@@ -32,7 +32,7 @@ struct Url {
3232
}
3333

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

trunk/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-
struct BufWriter<'self> {
131+
pub 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-
struct BufReader<'self> {
159+
pub struct BufReader<'self> {
160160
buf: &'self [u8],
161161
pos: uint
162162
}

0 commit comments

Comments
 (0)