about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-03-26 20:52:16 -0700
committerPatrick Walton <pcwalton@mimiga.net>2013-03-26 21:30:18 -0700
commitf41a510631ca8e41f16c8a0097a179d067ce4f7d (patch)
tree90efcc825f9341632886b71034cacd82997fd3a1 /src/libstd
parent0a4d0f37ca97bb0b69f5f9e768269dde4acedae8 (diff)
downloadrust-f41a510631ca8e41f16c8a0097a179d067ce4f7d.tar.gz
rust-f41a510631ca8e41f16c8a0097a179d067ce4f7d.zip
librustc: Remove obsolete syntax
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/base64.rs2
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',