rollup merge of #21340: pshc/libsyntax-no-more-ints

Collaboration with @rylev!

I didn't change `int` in the [quasi-quoter](99ae1a30f3/src/libsyntax/ext/quote.rs (L328)), because I'm not sure if there will be adverse effects.

Addresses #21095.
This commit is contained in:
Alex Crichton 2015-01-21 09:13:51 -08:00
commit 0c981875e4
46 changed files with 488 additions and 488 deletions

View file

@ -1872,9 +1872,9 @@ impl Clean<Span> for syntax::codemap::Span {
Span {
filename: filename.to_string(),
loline: lo.line,
locol: lo.col.to_uint(),
locol: lo.col.to_usize(),
hiline: hi.line,
hicol: hi.col.to_uint(),
hicol: hi.col.to_usize(),
}
}
}