diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-06-21 16:44:10 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-06-21 16:44:10 -0700 |
| commit | 312faf31dfcce7a2d15495c5042d80a3e3b476c9 (patch) | |
| tree | 4ad8383191907b5cb148291a2d1dbc078f590eb6 /src/rt/sync/timer.cpp | |
| parent | 57101780811490fa759ed1dca310c405d28c0a72 (diff) | |
| download | rust-312faf31dfcce7a2d15495c5042d80a3e3b476c9.tar.gz rust-312faf31dfcce7a2d15495c5042d80a3e3b476c9.zip | |
Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.
Diffstat (limited to 'src/rt/sync/timer.cpp')
| -rw-r--r-- | src/rt/sync/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/sync/timer.cpp b/src/rt/sync/timer.cpp index 28ee6da2b62..0204517d512 100644 --- a/src/rt/sync/timer.cpp +++ b/src/rt/sync/timer.cpp @@ -10,7 +10,7 @@ uint64_t ns_per_s = 1000000000LL; timer::timer() { #if __WIN32__ _ticks_per_s = 0LL; - // FIXME: assert this works or have a workaround. + // FIXME (#2675): assert this works or have a workaround. QueryPerformanceFrequency((LARGE_INTEGER *)&_ticks_per_s); if (_ticks_per_s == 0LL) { _ticks_per_s = 1LL; |
