[PATCH] D32890: Split up lld Parallel.h a bit
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 4 18:13:31 PDT 2017
ruiu added inline comments.
================
Comment at: lld/include/lld/Core/Executor.h:27-29
+ uint32_t _count;
+ mutable std::mutex _condMut;
+ mutable std::condition_variable _cond;
----------------
You want to remove the leading underscores and make them start with uppercase.
https://reviews.llvm.org/D32890
More information about the llvm-commits
mailing list