Skip to content

Commit 52ed570

Browse files
committed
Move send_map to libcore
1 parent 1854a73 commit 52ed570

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/libcore/core.rc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export tuple;
5454
export to_str, to_bytes;
5555
export dvec, dvec_iter;
5656
export dlist, dlist_iter;
57+
export send_map;
5758
export hash;
5859
export cmp;
5960
export num;
@@ -195,6 +196,7 @@ mod dlist_iter {
195196
#[path ="dlist.rs"]
196197
mod inst;
197198
}
199+
mod send_map;
198200

199201
// Concurrency
200202
mod arc;
File renamed without changes.

src/libstd/std.rc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import core::*;
2323
export net, net_tcp, net_ip, net_url;
2424
export uv, uv_ll, uv_iotask, uv_global_loop;
2525
export c_vec, util, timer;
26-
export bitv, deque, fun_treemap, list, map, send_map;
26+
export bitv, deque, fun_treemap, list, map;
2727
export smallintmap, sort, treemap;
2828
export rope, arena, par;
2929
export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint;
@@ -59,7 +59,6 @@ mod deque;
5959
mod fun_treemap;
6060
mod list;
6161
mod map;
62-
mod send_map;
6362
mod rope;
6463
mod smallintmap;
6564
mod sort;

0 commit comments

Comments
 (0)