[libcxx-commits] [PATCH] D116606: [libcxx] Use Fuchsia-native monotonic clock for std::chrono::steady_clock

Roland McGrath via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jan 4 11:07:02 PST 2022


mcgrathr added inline comments.


================
Comment at: libcxx/src/chrono.cpp:273
 
-#elif defined(CLOCK_MONOTONIC)
+#  elif defined(__Fuchsia__)
+
----------------
phosek wrote:
> The rest of this file doesn't seem to be using this indentation.
AFAICT it's not consistent within the file.  There are spaces after `#` in the some of the blocks at the top but not everywhere else.
The formatting in this change is the result of `arc diff` doing its idea of lint checks, which AIUI is clang-format on the lines mentioned in the diff.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D116606/new/

https://reviews.llvm.org/D116606



More information about the libcxx-commits mailing list