diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-03-26 20:52:16 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-03-26 21:30:18 -0700 |
| commit | f41a510631ca8e41f16c8a0097a179d067ce4f7d (patch) | |
| tree | 90efcc825f9341632886b71034cacd82997fd3a1 /src/libstd | |
| parent | 0a4d0f37ca97bb0b69f5f9e768269dde4acedae8 (diff) | |
| download | rust-f41a510631ca8e41f16c8a0097a179d067ce4f7d.tar.gz rust-f41a510631ca8e41f16c8a0097a179d067ce4f7d.zip | |
librustc: Remove obsolete syntax
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/base64.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/base64.rs b/src/libstd/base64.rs index 2267d19292c..cdc15ae1d45 100644 --- a/src/libstd/base64.rs +++ b/src/libstd/base64.rs @@ -16,7 +16,7 @@ pub trait ToBase64 { fn to_base64(&self) -> ~str; } -static CHARS: [char * 64] = [ +static CHARS: [char, ..64] = [ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', |
