diff options
author | Zachary Turner <zturner@google.com> | 2014-09-19 20:12:32 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-09-19 20:12:32 +0000 |
commit | 4171da5cfead8fa06ddb5395d897e42eb1b14804 (patch) | |
tree | 610b0b4e37b94a49729dc5e9f606e367649ca578 /lldb/source/lldb-log.cpp | |
parent | b77aba77086f92db9a3b83b308a3fce6dc08f864 (diff) | |
download | bcm5719-llvm-4171da5cfead8fa06ddb5395d897e42eb1b14804.tar.gz bcm5719-llvm-4171da5cfead8fa06ddb5395d897e42eb1b14804.zip |
Make sure to #include <atomic> when using std::atomic.
llvm-svn: 218148
Diffstat (limited to 'lldb/source/lldb-log.cpp')
-rw-r--r-- | lldb/source/lldb-log.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/lldb-log.cpp b/lldb/source/lldb-log.cpp index 49c43afe6fb..463de137f62 100644 --- a/lldb/source/lldb-log.cpp +++ b/lldb/source/lldb-log.cpp @@ -11,6 +11,7 @@ // C Includes // C++ Includes +#include <atomic> // Other libraries and framework includes // Project includes #include "lldb/Interpreter/Args.h" |