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



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to