[Lldb-commits] [lldb] r204632 - Include <mutex> for std::once.

Greg Clayton gclayton at apple.com
Mon Mar 24 11:08:18 PDT 2014


Author: gclayton
Date: Mon Mar 24 13:08:18 2014
New Revision: 204632

URL: http://llvm.org/viewvc/llvm-project?rev=204632&view=rev
Log:
Include <mutex> for std::once.

Modified:
    lldb/trunk/source/Core/ModuleList.cpp

Modified: lldb/trunk/source/Core/ModuleList.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ModuleList.cpp?rev=204632&r1=204631&r2=204632&view=diff
==============================================================================
--- lldb/trunk/source/Core/ModuleList.cpp (original)
+++ lldb/trunk/source/Core/ModuleList.cpp Mon Mar 24 13:08:18 2014
@@ -13,6 +13,8 @@
 #include <stdint.h>
 
 // C++ Includes
+#include <mutex> // std::once
+
 // Other libraries and framework includes
 // Project includes
 #include "lldb/Core/Log.h"





More information about the lldb-commits mailing list