]> git.lizzy.rs Git - rust.git/commitdiff
libstd: Fix Win32 and other bustage.
authorPatrick Walton <pcwalton@mimiga.net>
Fri, 22 Nov 2013 22:15:32 +0000 (14:15 -0800)
committerPatrick Walton <pcwalton@mimiga.net>
Tue, 26 Nov 2013 16:25:27 +0000 (08:25 -0800)
src/libstd/condition.rs
src/libstd/gc.rs
src/libstd/io/native/file.rs
src/libstd/io/native/process.rs
src/libstd/num/mod.rs
src/libstd/num/uint.rs
src/libstd/ops.rs
src/libstd/rand/os.rs
src/libstd/rt/args.rs
src/libstd/vec.rs

index 80ff104e8303ec467f1df97ebf42f6109b12115d..e34e94ac10cc5e651866567116e11560f00aab02 100644 (file)
 parameters are used for, an example usage of this condition would be:
 
 ```rust
-do my_error::cond.trap(|raised_int| {
+my_error::cond.trap(|raised_int| {
 
     // the condition `my_error` was raised on, and the value it raised is stored
     // in `raised_int`. This closure must return a `~str` type (as specified in
     // the declaration of the condition
     if raised_int == 3 { ~"three" } else { ~"oh well" }
 
-}).inside {
+}).inside(|| {
 
     // The condition handler above is installed for the duration of this block.
     // That handler will override any previous handler, but the previous handler
@@ -50,7 +50,7 @@
     println(my_error::cond.raise(3)); // prints "three"
     println(my_error::cond.raise(4)); // prints "oh well"
 
-}
+})
  ```
 
 Condition handling is useful in cases where propagating errors is either to
@@ -176,9 +176,9 @@ impl<'self, T, U> Trap<'self, T, U> {
     /// ```rust
     /// condition! { my_error: int -> int; }
     ///
-    /// let result = do my_error::cond.trap(|error| error + 3).inside {
+    /// let result = my_error::cond.trap(|error| error + 3).inside(|| {
     ///     my_error::cond.raise(4)
-    /// };
+    /// });
     /// assert_eq!(result, 7);
     /// ```
     pub fn inside<V>(&self, inner: 'self || -> V) -> V {
index 5fe11d310d4675f8b1130f7c2b4a15ca8d4d3803..d3bec8ca6c907c18fc2d75a414e7dd35839c3d92 100644 (file)
@@ -61,9 +61,9 @@ mod tests {
     fn test_clone() {
         let x = Gc::new(RefCell::new(5));
         let y = x.clone();
-        do x.borrow().with_mut |inner| {
+        x.borrow().with_mut(|inner| {
             *inner = 20;
-        }
+        });
         assert_eq!(y.borrow().with(|x| *x), 20);
     }
 
@@ -71,9 +71,9 @@ fn test_clone() {
     fn test_deep_clone() {
         let x = Gc::new(RefCell::new(5));
         let y = x.deep_clone();
-        do x.borrow().with_mut |inner| {
+        x.borrow().with_mut(|inner| {
             *inner = 20;
-        }
+        });
         assert_eq!(y.borrow().with(|x| *x), 5);
     }
 
index c21326262e4c659e847f33820fb747792fbb26e9..9dd6daf66e9489056a3c8929066d45f13521c3cc 100644 (file)
@@ -576,7 +576,9 @@ pub fn unlink(p: &CString) -> IoResult<()> {
     #[cfg(windows)]
     fn os_unlink(p: &CString) -> IoResult<()> {
         super::mkerr_winbool(unsafe {
-            as_utf16_p(p.as_str().unwrap(), |buf| libc::DeleteFileW(buf));
+            as_utf16_p(p.as_str().unwrap(), |buf| {
+                libc::DeleteFileW(buf)
+            })
         })
     }
 
index ef531c8803c7625c3789f4f60d07d7fdede929e3..038b6ec0ff20140f6ee01a57c1f0898c8c844d78 100644 (file)
@@ -499,7 +499,7 @@ fn with_envp<T>(env: Option<~[(~str, ~str)]>, cb: |*mut c_void| -> T) -> T {
 
             blk.push(0);
 
-            blk.as_imm_buf(|p, _len| unsafe { cb(cast::transmute(p)) });
+            blk.as_imm_buf(|p, _len| unsafe { cb(cast::transmute(p)) })
         }
         _ => cb(ptr::mut_null())
     }
index aeda3fa1cd193f71d62c6662c1a64a6be5443edc..456011d51720e2654a0354243aa86401d828a0d5 100644 (file)
@@ -104,7 +104,7 @@ pub trait Unsigned: Num {}
 /// use num::Times;
 /// let ten = 10 as uint;
 /// let mut accum = 0;
-/// do ten.times { accum += 1; }
+/// ten.times(|| { accum += 1; })
 /// ```
 ///
 pub trait Times {
index cf7047bd068a0a567815e6860d846e1993d58b81..cf28083bb09b941d6106614d85e3f3cbd113d299 100644 (file)
@@ -77,13 +77,13 @@ impl num::Times for uint {
     #[inline]
     ///
     /// A convenience form for basic repetition. Given a uint `x`,
-    /// `do x.times { ... }` executes the given block x times.
+    /// `x.times(|| { ... })` executes the given block x times.
     ///
     /// Equivalent to `for uint::range(0, x) |_| { ... }`.
     ///
     /// Not defined on all integer types to permit unambiguous
     /// use with integer literals of inferred integer-type as
-    /// the self-value (eg. `do 100.times { ... }`).
+    /// the self-value (eg. `100.times(|| { ... })`).
     ///
     fn times(&self, it: ||) {
         let mut i = *self;
index 62685b5dcd3937188e1c08b8132ac3c9677f265a..cdc63608122a8ef4d512e97a9b4ad2a193f668df 100644 (file)
@@ -481,8 +481,8 @@ fn drop(&mut self) {
 
     #[bench]
     fn alloc_obj_with_dtor(bh: &mut BenchHarness) {
-        do bh.iter {
+        bh.iter(|| {
             HasDtor { x : 10 };
-        }
+        })
     }
 }
index cd90af113ec6172e285cfa84f55fe65bcb31a456..5558b8b33487bd08bb6e78b8f42dd8eb8bafa90d 100644 (file)
@@ -111,9 +111,9 @@ fn rust_win32_rand_gen(hProv: HCRYPTPROV, dwLen: DWORD,
                                    pbBuffer: *mut BYTE);
         }
 
-        do v.as_mut_buf |ptr, len| {
+        v.as_mut_buf(|ptr, len| {
             unsafe {rust_win32_rand_gen(self.hcryptprov, len as DWORD, ptr)}
-        }
+        })
     }
 }
 
index a173be64356702b00290d14392a6bb4d740805c4..82b98fa7f9a09f5501a9e2e452e9c18a69d00cc3 100644 (file)
@@ -109,16 +109,16 @@ pub fn clone() -> Option<~[~str]> {
 
     fn with_lock<T>(f: || -> T) -> T {
         static mut lock: Mutex = MUTEX_INIT;
-        do (|| {
+        (|| {
             unsafe {
                 lock.lock();
                 f()
             }
-        }).finally {
+        }).finally(|| {
             unsafe {
                 lock.unlock();
             }
-        }
+        })
     }
 
     fn get_global_ptr() -> *mut Option<~~[~str]> {
@@ -127,9 +127,9 @@ fn get_global_ptr() -> *mut Option<~~[~str]> {
 
     // Copied from `os`.
     unsafe fn load_argc_and_argv(argc: int, argv: **u8) -> ~[~str] {
-        do vec::from_fn(argc as uint) |i| {
+        vec::from_fn(argc as uint, |i| {
             str::raw::from_c_str(*(argv as **libc::c_char).offset(i as int))
-        }
+        })
     }
 
     #[cfg(test)]
index 9dc4f6ae3771c81d70a6b9c4edc8096512c5c2a0..22cf57979a1a21780d1a99d57582d65a2913b554 100644 (file)
@@ -3894,25 +3894,25 @@ fn connect(bh: &mut BenchHarness) {
     #[bench]
     fn push(bh: &mut BenchHarness) {
         let mut vec: ~[uint] = ~[0u];
-        do bh.iter() {
+        bh.iter(|| {
             vec.push(0);
-        }
+        })
     }
 
     #[bench]
     fn starts_with_same_vector(bh: &mut BenchHarness) {
         let vec: ~[uint] = vec::from_fn(100, |i| i);
-        do bh.iter() {
+        bh.iter(|| {
             vec.starts_with(vec);
-        }
+        })
     }
 
     #[bench]
     fn starts_with_single_element(bh: &mut BenchHarness) {
         let vec: ~[uint] = ~[0u];
-        do bh.iter() {
+        bh.iter(|| {
             vec.starts_with(vec);
-        }
+        })
     }
 
     #[bench]
@@ -3920,25 +3920,25 @@ fn starts_with_diff_one_element_at_end(bh: &mut BenchHarness) {
         let vec: ~[uint] = vec::from_fn(100, |i| i);
         let mut match_vec: ~[uint] = vec::from_fn(99, |i| i);
         match_vec.push(0);
-        do bh.iter() {
+        bh.iter(|| {
             vec.starts_with(match_vec);
-        }
+        })
     }
 
     #[bench]
     fn ends_with_same_vector(bh: &mut BenchHarness) {
         let vec: ~[uint] = vec::from_fn(100, |i| i);
-        do bh.iter() {
+        bh.iter(|| {
             vec.ends_with(vec);
-        }
+        })
     }
 
     #[bench]
     fn ends_with_single_element(bh: &mut BenchHarness) {
         let vec: ~[uint] = ~[0u];
-        do bh.iter() {
+        bh.iter(|| {
             vec.ends_with(vec);
-        }
+        })
     }
 
     #[bench]
@@ -3946,16 +3946,16 @@ fn ends_with_diff_one_element_at_beginning(bh: &mut BenchHarness) {
         let vec: ~[uint] = vec::from_fn(100, |i| i);
         let mut match_vec: ~[uint] = vec::from_fn(100, |i| i);
         match_vec[0] = 200;
-        do bh.iter() {
+        bh.iter(|| {
             vec.starts_with(match_vec);
-        }
+        })
     }
 
     #[bench]
     fn contains_last_element(bh: &mut BenchHarness) {
         let vec: ~[uint] = vec::from_fn(100, |i| i);
-        do bh.iter() {
+        bh.iter(|| {
                 vec.contains(&99u);
-        }
+        })
     }
 }