Use underscores to breakup long number.

This commit is contained in:
Corey Farwell 2016-09-25 13:56:54 -04:00
parent 2d1d4d1994
commit ae3ed31155

View File

@ -123,7 +123,7 @@ struct Output {
}
pub fn main() {
const STACK_SIZE: usize = 32000000; // 32MB
const STACK_SIZE: usize = 32_000_000; // 32MB
let res = std::thread::Builder::new().stack_size(STACK_SIZE).spawn(move || {
let s = env::args().collect::<Vec<_>>();
main_args(&s)