Fix tidy warning

Prefer FIXME to TODO
This commit is contained in:
Raph Levien 2016-10-20 18:09:52 -07:00
parent 773a5f59e9
commit 69d7884a1d
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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) {