diff options
| author | Aidan Cully <github@aidan.users.panix.com> | 2014-12-05 18:39:58 -0500 |
|---|---|---|
| committer | Aidan Cully <github@aidan.users.panix.com> | 2014-12-05 18:39:58 -0500 |
| commit | c394a6c238a2e981f9092e142029ec5b465c1dcd (patch) | |
| tree | 23648629a1fd3f7b12240d59519ea7f007b91072 /src/libstd | |
| parent | 7bf7bd6a75c38ed71df69cb9149eb7fdce23ced5 (diff) | |
| download | rust-c394a6c238a2e981f9092e142029ec5b465c1dcd.tar.gz rust-c394a6c238a2e981f9092e142029ec5b465c1dcd.zip | |
prefer "FIXME" to "TODO".
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/sys/common/thread_local.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/common/thread_local.rs b/src/libstd/sys/common/thread_local.rs index b33e74248d2..3eb0e3f46cb 100644 --- a/src/libstd/sys/common/thread_local.rs +++ b/src/libstd/sys/common/thread_local.rs @@ -193,7 +193,7 @@ impl StaticKey { // prove that it has not yet been set. As such, we'll continue using a // value of 0, but with some gyrations to make sure we have a non-0 // value returned from the creation routine. - // TODO: this is clearly a hack, and should be cleaned up. + // FIXME: this is clearly a hack, and should be cleaned up. let key1 = imp::create(self.dtor); let key = if key1 != 0 { key1 |
