Skip to content

Commit e1bdcba

Browse files
committed
---
yaml --- r: 50135 b: refs/heads/auto c: c108409 h: refs/heads/master i: 50133: 5f271cd 50131: b3c6547 50127: cb57fc4 v: v3
1 parent 50c5d53 commit e1bdcba

26 files changed

+354
-354
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: be9bddd46377bc982b73acf15a720365a54197a7
17+
refs/heads/auto: c1084091d4e5472fac7e158b11120bad6ff210ff
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167

branches/auto/src/libstd/arena.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ pub fn Arena() -> Arena {
123123
}
124124

125125
#[inline(always)]
126-
pure fn round_up_to(base: uint, align: uint) -> uint {
126+
fn round_up_to(base: uint, align: uint) -> uint {
127127
(base + (align - 1)) & !(align - 1)
128128
}
129129

branches/auto/src/libstd/base64.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ use core::str;
1313
use core::vec;
1414

1515
pub trait ToBase64 {
16-
pure fn to_base64(&self) -> ~str;
16+
fn to_base64(&self) -> ~str;
1717
}
1818

1919
impl ToBase64 for &'self [u8] {
20-
pure fn to_base64(&self) -> ~str {
20+
fn to_base64(&self) -> ~str {
2121
let chars = str::chars(
2222
~"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
2323
);
@@ -70,17 +70,17 @@ impl ToBase64 for &'self [u8] {
7070
}
7171
7272
impl ToBase64 for &'self str {
73-
pure fn to_base64(&self) -> ~str {
73+
fn to_base64(&self) -> ~str {
7474
str::to_bytes(*self).to_base64()
7575
}
7676
}
7777
7878
pub trait FromBase64 {
79-
pure fn from_base64(&self) -> ~[u8];
79+
fn from_base64(&self) -> ~[u8];
8080
}
8181
8282
impl FromBase64 for ~[u8] {
83-
pure fn from_base64(&self) -> ~[u8] {
83+
fn from_base64(&self) -> ~[u8] {
8484
if self.len() % 4u != 0u { fail!(~"invalid base64 length"); }
8585
8686
let len = self.len();
@@ -142,7 +142,7 @@ impl FromBase64 for ~[u8] {
142142
}
143143
144144
impl FromBase64 for ~str {
145-
pure fn from_base64(&self) -> ~[u8] {
145+
fn from_base64(&self) -> ~[u8] {
146146
str::to_bytes(*self).from_base64()
147147
}
148148
}

0 commit comments

Comments
 (0)