Sprinkle some #include <mutex> in files that use std::call_once.

llvm-svn: 234005
This commit is contained in:
Benjamin Kramer 2015-04-03 10:55:00 +00:00
parent ed2ba33ba0
commit 3f69fa6f56
7 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,8 @@
#include <errno.h> #include <errno.h>
// C++ Includes // C++ Includes
#include <mutex>
// Other libraries and framework includes // Other libraries and framework includes
#include "lldb/Core/PluginManager.h" #include "lldb/Core/PluginManager.h"
#include "lldb/Core/State.h" #include "lldb/Core/State.h"

View File

@ -11,6 +11,8 @@
#include <errno.h> #include <errno.h>
// C++ Includes // C++ Includes
#include <mutex>
// Other libraries and framework includes // Other libraries and framework includes
#include "lldb/Core/PluginManager.h" #include "lldb/Core/PluginManager.h"
#include "lldb/Core/State.h" #include "lldb/Core/State.h"

View File

@ -12,6 +12,8 @@
#include <stdlib.h> #include <stdlib.h>
// C++ Includes // C++ Includes
#include <mutex>
// Other libraries and framework includes // Other libraries and framework includes
#include "lldb/Core/Debugger.h" #include "lldb/Core/Debugger.h"
#include "lldb/Core/PluginManager.h" #include "lldb/Core/PluginManager.h"

View File

@ -12,6 +12,7 @@
// C++ Includes // C++ Includes
#include <list> #include <list>
#include <mutex>
#include <vector> #include <vector>
// Other libraries and framework includes // Other libraries and framework includes

View File

@ -10,6 +10,9 @@
// C Includes // C Includes
#include <stdlib.h> #include <stdlib.h>
// C++ Includes
#include <mutex>
// Other libraries and framework includes // Other libraries and framework includes
#include "lldb/Core/PluginManager.h" #include "lldb/Core/PluginManager.h"
#include "lldb/Core/Module.h" #include "lldb/Core/Module.h"

View File

@ -24,6 +24,7 @@
// C++ Includes // C++ Includes
#include <algorithm> #include <algorithm>
#include <map> #include <map>
#include <mutex>
// Other libraries and framework includes // Other libraries and framework includes

View File

@ -13,6 +13,7 @@
// C++ Includes // C++ Includes
#include "llvm/Support/MathExtras.h" #include "llvm/Support/MathExtras.h"
#include <mutex>
// Other libraries and framework includes // Other libraries and framework includes
#include "lldb/Core/DataBuffer.h" #include "lldb/Core/DataBuffer.h"