| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-06-13 | librustc: Forbid enum-to-float casts. | Patrick Walton | -8/+0 | |
| Closes #14794. If you're casting from an enum to a float, cast through an integer first. [breaking-change] | ||||
| 2013-10-01 | remove the `float` type | Daniel Micay | -4/+4 | |
| It is simply defined as `f64` across every platform right now. A use case hasn't been presented for a `float` type defined as the highest precision floating point type implemented in hardware on the platform. Performance-wise, using the smallest precision correct for the use case greatly saves on cache space and allows for fitting more numbers into SSE/AVX registers. If there was a use case, this could be implemented as simply a type alias or a struct thanks to `#[cfg(...)]`. Closes #6592 The mailing list thread, for reference: https://mail.mozilla.org/pipermail/rust-dev/2013-July/004632.html | ||||
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -8/+8 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -8/+8 | |
| 2013-03-27 | testsuite: more `pub fn main` | Tim Chevalier | -1/+1 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -4/+4 | |
| 2013-03-09 | Make a const translation test match TESTNAME=const | Jed Davis | -0/+31 | |
