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 0e18a9c commit e1a9144Copy full SHA for e1a9144
src/librustc_driver/lib.rs
@@ -344,17 +344,13 @@ pub trait CompilerCalls<'a> {
344
#[derive(Copy, Clone)]
345
pub struct RustcDefaultCalls;
346
347
-/**
348
- * TODO remove these and use winapi 0.3 instead
349
- *
350
- * These are duplicated in
351
- * - bootstrap/compile.rs#L478
352
- * - librustc_errors/emitter.rs#L1253
353
- */
+// FIXME remove these and use winapi 0.3 instead
+// Duplicates: bootstrap/compile.rs, librustc_errors/emitter.rs
354
#[cfg(unix)]
355
fn stdout_isatty() -> bool {
356
unsafe { libc::isatty(libc::STDOUT_FILENO) != 0 }
357
}
+
358
#[cfg(windows)]
359
360
type DWORD = u32;
0 commit comments