diff options
author | Greg Clayton <gclayton@apple.com> | 2014-03-24 18:08:18 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-03-24 18:08:18 +0000 |
commit | baf6e8e4b1ffd5c2541dfa7f57bde4f0880bf6af (patch) | |
tree | bf61558f1cecac827d4b68cff05651f205f630af /lldb/source/Core/ModuleList.cpp | |
parent | 2d5c156b963e6a2c9dcdb1d4e7f84f0576d5bbe8 (diff) | |
download | bcm5719-llvm-baf6e8e4b1ffd5c2541dfa7f57bde4f0880bf6af.tar.gz bcm5719-llvm-baf6e8e4b1ffd5c2541dfa7f57bde4f0880bf6af.zip |
Include <mutex> for std::once.
llvm-svn: 204632
Diffstat (limited to 'lldb/source/Core/ModuleList.cpp')
-rw-r--r-- | lldb/source/Core/ModuleList.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Core/ModuleList.cpp b/lldb/source/Core/ModuleList.cpp index 32af1eaf50d..3fad62d9a30 100644 --- a/lldb/source/Core/ModuleList.cpp +++ b/lldb/source/Core/ModuleList.cpp @@ -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" |