zturner added inline comments.
================
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();
----------------
aprantl wrote:
> Out of curiosity: Why/how did this work before??
My guess is nobody is actually using this class so the template was never
instantiated.
https://reviews.llvm.org/D42340
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits