Skip to content

Commit 5126c09

Browse files
committed
---
yaml --- r: 50479 b: refs/heads/auto c: 84c296b h: refs/heads/master i: 50477: e33f32f 50475: 08d457c 50471: 3b35d1c 50463: a4af562 v: v3
1 parent 6227f06 commit 5126c09

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 17ab718d5989762d6ddf1a7ad02c1e64a9ae7f1a
17+
refs/heads/auto: 84c296b27d3324b419e54bb5c899bd1fdc1f1008
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167

branches/auto/src/libstd/net_url.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use core::to_str::ToStr;
2525
use core::to_str;
2626
use core::uint;
2727

28-
#[deriving(Eq)]
28+
#[deriving(Clone, Eq)]
2929
struct Url {
3030
scheme: ~str,
3131
user: Option<UserInfo>,
@@ -36,7 +36,7 @@ struct Url {
3636
fragment: Option<~str>
3737
}
3838

39-
#[deriving(Eq)]
39+
#[deriving(Clone, Eq)]
4040
struct UserInfo {
4141
user: ~str,
4242
pass: Option<~str>
@@ -398,7 +398,7 @@ pub fn get_scheme(rawurl: &str) -> Result<(~str, ~str), ~str> {
398398
return Err(~"url: Scheme must be terminated with a colon.");
399399
}
400400

401-
#[deriving(Eq)]
401+
#[deriving(Clone, Eq)]
402402
enum Input {
403403
Digit, // all digits
404404
Hex, // digits and letters a-f

0 commit comments

Comments
 (0)