rust/src/libdebug
Patrick Walton a5bb0a3a45 librustc: Remove the fallback to int for integers and f64 for
floating point numbers for real.

This will break code that looks like:

    let mut x = 0;
    while ... {
        x += 1;
    }
    println!("{}", x);

Change that code to:

    let mut x = 0i;
    while ... {
        x += 1;
    }
    println!("{}", x);

Closes #15201.

[breaking-change]
2014-06-29 11:47:58 -07:00
..
fmt.rs Move std::{reflect,repr,Poly} to a libdebug crate 2014-05-27 21:44:51 -07:00
lib.rs Remove the quad_precision_float feature gate 2014-06-24 16:36:12 -07:00
reflect.rs Rename all raw pointers as necessary 2014-06-28 11:53:58 -07:00
repr.rs librustc: Remove the fallback to int for integers and f64 for 2014-06-29 11:47:58 -07:00