Skip to content

Commit 4ba08fb

Browse files
committed
---
yaml --- r: 31039 b: refs/heads/incoming c: ba75a3e h: refs/heads/master i: 31037: a47a2ca 31035: 1bbfd48 31031: 9f23016 31023: 04ef41a 31007: 6bcebe8 30975: 620c364 v: v3
1 parent 94d0f25 commit 4ba08fb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: 8574766033d3b5e3925e3807d13f9dcc639e5d1b
9+
refs/heads/incoming: ba75a3e14c8ffe85c0ac0a81a31affff1d678834
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/libstd/uv_ll.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* This module's implementation will hopefully be, eventually, replaced
2020
* with per-platform, generated source files from rust-bindgen.
2121
*/
22-
#[warn(deprecated_mode)];
22+
2323
#[allow(non_camel_case_types)]; // C types
2424

2525
use libc::size_t;
@@ -642,7 +642,7 @@ extern mod rustrt {
642642
fn rust_uv_addrinfo_as_sockaddr_in(input: *addrinfo) -> *sockaddr_in;
643643
fn rust_uv_addrinfo_as_sockaddr_in6(input: *addrinfo) -> *sockaddr_in6;
644644
fn rust_uv_malloc_buf_base_of(sug_size: libc::size_t) -> *u8;
645-
fn rust_uv_free_base_of_buf(+buf: uv_buf_t);
645+
fn rust_uv_free_base_of_buf(++buf: uv_buf_t);
646646
fn rust_uv_get_stream_handle_from_connect_req(
647647
connect_req: *uv_connect_t)
648648
-> *uv_stream_t;
@@ -661,8 +661,8 @@ extern mod rustrt {
661661
fn rust_uv_get_data_for_req(req: *libc::c_void) -> *libc::c_void;
662662
fn rust_uv_set_data_for_req(req: *libc::c_void,
663663
data: *libc::c_void);
664-
fn rust_uv_get_base_from_buf(+buf: uv_buf_t) -> *u8;
665-
fn rust_uv_get_len_from_buf(+buf: uv_buf_t) -> libc::size_t;
664+
fn rust_uv_get_base_from_buf(++buf: uv_buf_t) -> *u8;
665+
fn rust_uv_get_len_from_buf(++buf: uv_buf_t) -> libc::size_t;
666666

667667
// sizeof testing helpers
668668
fn rust_uv_helper_uv_tcp_t_size() -> libc::c_uint;
@@ -1357,8 +1357,8 @@ pub mod test {
13571357

13581358
fn impl_uv_tcp_server(server_ip: &str,
13591359
server_port: int,
1360-
kill_server_msg: ~str,
1361-
server_resp_msg: ~str,
1360+
+kill_server_msg: ~str,
1361+
+server_resp_msg: ~str,
13621362
server_chan: *comm::Chan<~str>,
13631363
continue_chan: *comm::Chan<bool>) unsafe {
13641364
let test_loop = loop_new();

0 commit comments

Comments
 (0)