We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d1d4d1 commit ae3ed31Copy full SHA for ae3ed31
src/librustdoc/lib.rs
@@ -123,7 +123,7 @@ struct Output {
123
}
124
125
pub fn main() {
126
- const STACK_SIZE: usize = 32000000; // 32MB
+ const STACK_SIZE: usize = 32_000_000; // 32MB
127
let res = std::thread::Builder::new().stack_size(STACK_SIZE).spawn(move || {
128
let s = env::args().collect::<Vec<_>>();
129
main_args(&s)
0 commit comments