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 60fd0f0 commit a301ba2Copy full SHA for a301ba2
1 file changed
dsc/src/main.rs
@@ -29,21 +29,6 @@ pub mod util;
29
i18n!("locales", fallback = "en-us");
30
31
fn main() {
32
- #[cfg(windows)]
33
- {
34
- let mut builder = std::thread::Builder::new();
35
- builder = builder.stack_size(2 * 1024 * 1024); // Default stack is too small on Windows causing overflow
36
- builder.spawn(|| {
37
- dsc_main();
38
- }).unwrap().join().unwrap();
39
- }
40
- #[cfg(not(windows))]
41
42
43
44
-}
45
-
46
-fn dsc_main() {
47
#[cfg(debug_assertions)]
48
check_debug();
49
0 commit comments