From 69d7884a1d464b73a95c95e04e8d8d159cf61937 Mon Sep 17 00:00:00 2001 From: Raph Levien Date: Thu, 20 Oct 2016 18:09:52 -0700 Subject: [PATCH] Fix tidy warning Prefer FIXME to TODO --- src/librustc_back/target/fuchsia_base.rs | 2 +- src/libstd/sys/unix/thread.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_back/target/fuchsia_base.rs b/src/librustc_back/target/fuchsia_base.rs index e763d6d8fba2..69546684cb70 100644 --- a/src/librustc_back/target/fuchsia_base.rs +++ b/src/librustc_back/target/fuchsia_base.rs @@ -25,7 +25,7 @@ pub fn opts() -> TargetOptions { // resolutions the linker does). This option only applies to all // following libraries so we're sure to pass it as one of the first // arguments. - // TODO: doesn't seem to be supported by clang toolchain + // FIXME: figure out whether these linker args are desirable //"-Wl,--as-needed".to_string(), // Always enable NX protection when it is available diff --git a/src/libstd/sys/unix/thread.rs b/src/libstd/sys/unix/thread.rs index df98d2e01698..1642baa34d63 100644 --- a/src/libstd/sys/unix/thread.rs +++ b/src/libstd/sys/unix/thread.rs @@ -137,7 +137,7 @@ impl Thread { } #[cfg(target_os = "fuchsia")] pub fn set_name(_name: &CStr) { - // TODO: determine whether Fuchsia has a way to set a thread name. + // FIXME: determine whether Fuchsia has a way to set a thread name. } pub fn sleep(dur: Duration) {