about summary refs log tree commit diff
path: root/src/libcore/uint-template.rs
diff options
context:
space:
mode:
authorMichael Sullivan <sully@msully.net>2012-06-29 16:26:56 -0700
committerMichael Sullivan <sully@msully.net>2012-06-29 17:41:45 -0700
commit98e161f00e8850b0f5c6a3a9f1b22b222c2355b7 (patch)
tree4e026fed97dda63a5394b86235a27eeb1015b094 /src/libcore/uint-template.rs
parente6baf44f1982d1a5e49cc4a0b5eaeb857418e35e (diff)
Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.
Diffstat (limited to 'src/libcore/uint-template.rs')
-rw-r--r--src/libcore/uint-template.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/uint-template.rs b/src/libcore/uint-template.rs
index 6ec8d2e8789..8e984f880f6 100644
--- a/src/libcore/uint-template.rs
+++ b/src/libcore/uint-template.rs
@@ -88,7 +88,7 @@ Parse a buffer of bytes
 
 `buf` must not be empty
 "]
-fn parse_buf(buf: [u8]/~, radix: uint) -> option<T> {
+fn parse_buf(buf: ~[u8], radix: uint) -> option<T> {
     if vec::len(buf) == 0u { ret none; }
     let mut i = vec::len(buf) - 1u;
     let mut power = 1u as T;
@@ -140,7 +140,7 @@ fn to_str(num: T, radix: uint) -> str {
 
 #[doc = "Low-level helper routine for string conversion."]
 fn to_str_bytes<U>(neg: bool, num: T, radix: uint,
-                   f: fn([u8]/&) -> U) -> U {
+                   f: fn(v: &[u8]) -> U) -> U {
 
     #[inline(always)]
     fn digit(n: T) -> u8 {