[Lldb-commits] [lldb] d132b85 - [lldb] Include <atomic> in LLDBAssert
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 13 20:50:43 PDT 2023
Author: Jonas Devlieghere
Date: 2023-06-13T20:50:29-07:00
New Revision: d132b854b3cbd094a06023f394d9b3dfd44e9b4f
URL: https://github.com/llvm/llvm-project/commit/d132b854b3cbd094a06023f394d9b3dfd44e9b4f
DIFF: https://github.com/llvm/llvm-project/commit/d132b854b3cbd094a06023f394d9b3dfd44e9b4f.diff
LOG: [lldb] Include <atomic> in LLDBAssert
Added:
Modified:
lldb/source/Utility/LLDBAssert.cpp
Removed:
################################################################################
diff --git a/lldb/source/Utility/LLDBAssert.cpp b/lldb/source/Utility/LLDBAssert.cpp
index 29bcacb6ad24c..4ecd6043e8ea6 100644
--- a/lldb/source/Utility/LLDBAssert.cpp
+++ b/lldb/source/Utility/LLDBAssert.cpp
@@ -16,6 +16,8 @@
#include <os/log.h>
#endif
+#include <atomic>
+
namespace lldb_private {
static void DefaultAssertCallback(llvm::StringRef message,
More information about the lldb-commits
mailing list