rust/src/librustrt
Niko Matsakis 9e3d0b002a librustc: Remove the fallback to int from typechecking.
This breaks a fair amount of code. The typical patterns are:

* `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`;

* `println!("{}", 3)`: change to `println!("{}", 3i)`;

* `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`.

RFC #30. Closes #6023.

[breaking-change]
2014-06-24 17:18:48 -07:00
..
args.rs Deprecate the bytes!() macro. 2014-06-18 17:02:22 -07:00
at_exit_imp.rs rustrt: Fix invalid reads caught by valgrind 2014-06-09 20:57:55 -07:00
bookkeeping.rs std: Extract librustrt out of libstd 2014-06-06 22:19:41 -07:00
c_str.rs Deprecate the bytes!() macro. 2014-06-18 17:02:22 -07:00
exclusive.rs std: Extract librustrt out of libstd 2014-06-06 22:19:41 -07:00
lib.rs librustc: Feature gate lang items and intrinsics. 2014-06-23 23:28:28 -07:00
libunwind.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
local.rs std: Extract librustrt out of libstd 2014-06-06 22:19:41 -07:00
local_data.rs Register new snapshots 2014-06-15 23:30:24 -07:00
local_heap.rs rustc: Obsolete the @ syntax entirely 2014-06-14 10:45:37 -07:00
local_ptr.rs Basic iOS support 2014-06-12 21:15:14 +03:00
macros.rs std: Extract librustrt out of libstd 2014-06-06 22:19:41 -07:00
mutex.rs Added Mipsel architecture support 2014-06-24 11:12:10 +02:00
rtio.rs Register new snapshots 2014-06-15 23:30:24 -07:00
stack.rs auto merge of #14963 : w3ln4/rust/master, r=alexcrichton 2014-06-24 13:46:54 +00:00
task.rs Register new snapshots 2014-06-15 23:30:24 -07:00
thread.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
thread_local_storage.rs Basic iOS support 2014-06-12 21:15:14 +03:00
unwind.rs auto merge of #14900 : alexcrichton/rust/snapshots, r=huonw 2014-06-16 08:16:49 +00:00
util.rs libs: Fix miscellaneous fallout of librustrt 2014-06-06 23:00:01 -07:00