diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2014-09-02 23:52:46 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2014-09-02 23:52:46 +0000 |
commit | ffa0895c3b32f01851532a6f40fd2c7e663afaf0 (patch) | |
tree | 8da6fe39add199623f84274688455d384a379b2e /libcxx/src | |
parent | 1ae325f53d694ac968ea870369fec077fdcdb026 (diff) | |
download | bcm5719-llvm-ffa0895c3b32f01851532a6f40fd2c7e663afaf0.tar.gz bcm5719-llvm-ffa0895c3b32f01851532a6f40fd2c7e663afaf0.zip |
Fix comment that was obsoleted by r216949
llvm-svn: 216999
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/chrono.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libcxx/src/chrono.cpp b/libcxx/src/chrono.cpp index 83661b0626d..456941144e0 100644 --- a/libcxx/src/chrono.cpp +++ b/libcxx/src/chrono.cpp @@ -109,10 +109,8 @@ steady_clock::now() _NOEXCEPT } #else // __APPLE__ -// FIXME: We assume that clock_gettime(CLOCK_MONOTONIC) works on -// non-apple systems. Instead, we should check _POSIX_TIMERS and -// _POSIX_MONOTONIC_CLOCK and fall back to something else if those -// don't exist. +// FIXME: if _LIBCPP_HAS_NO_MONOTONIC_CLOCK, then clock_gettime isn't going to +// work. It may be possible to fall back on something else, depending on the system. // Warning: If this is not truly steady, then it is non-conforming. It is // better for it to not exist and have the rest of libc++ use system_clock |