[Lldb-commits] [lldb] r250740 - [PlatformDarwin.cpp] Include <mutex> for std::once_flag.

Siva Chandra via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 19 14:43:08 PDT 2015


Author: sivachandra
Date: Mon Oct 19 16:43:07 2015
New Revision: 250740

URL: http://llvm.org/viewvc/llvm-project?rev=250740&view=rev
Log:
[PlatformDarwin.cpp] Include <mutex> for std::once_flag.

Reviewers: clayborg

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D13877

Modified:
    lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp

Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp?rev=250740&r1=250739&r2=250740&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp Mon Oct 19 16:43:07 2015
@@ -11,6 +11,8 @@
 
 // C Includes
 // C++ Includes
+#include <mutex>
+
 // Other libraries and framework includes
 #include "clang/Basic/VersionTuple.h"
 // Project includes




More information about the lldb-commits mailing list