rust/src/libserialize
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
..
base64.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
collection_impls.rs Fallout from the libcollections movement 2014-06-05 13:55:11 -07:00
ebml.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
hex.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
json.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
lib.rs Mark all crates except std as experimental 2014-06-17 22:13:36 -07:00
serialize.rs rustc: Obsolete the @ syntax entirely 2014-06-14 10:45:37 -07:00