[Lldb-commits] [PATCH] D42340: [modules] Fix missing includes/typo in LLDB's includes. [NFC]
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Jan 20 20:08:06 PST 2018
aprantl accepted this revision.
aprantl added a comment.
This revision is now accepted and ready to land.
Thanks! This looks generally good/useful as a cleanup, too.
================
Comment at: include/lldb/Core/ThreadSafeDenseSet.h:49
void Clear() {
- stds::lock_guard<_MutexType> guard(m_mutex);
+ std::lock_guard<_MutexType> guard(m_mutex);
m_set.clear();
----------------
Out of curiosity: Why/how did this work before??
https://reviews.llvm.org/D42340
More information about the lldb-commits
mailing list