[Lldb-commits] [PATCH] D42340: [modules] Fix missing includes/typo	in LLDB's includes. [NFC]
    Zachary Turner via Phabricator via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Sat Jan 20 20:19:31 PST 2018
    
    
  
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
    
    
More information about the lldb-commits
mailing list