[Lldb-commits] [lldb] 12cf6d3 - [lldb] Fix missing semicolon in lldbassert macro
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 4 13:37:23 PDT 2025
Author: Jonas Devlieghere
Date: 2025-04-04T13:37:12-07:00
New Revision: 12cf6d3b9e0b4983d609576b15dc37ceb7d1d8d7
URL: https://github.com/llvm/llvm-project/commit/12cf6d3b9e0b4983d609576b15dc37ceb7d1d8d7
DIFF: https://github.com/llvm/llvm-project/commit/12cf6d3b9e0b4983d609576b15dc37ceb7d1d8d7.diff
LOG: [lldb] Fix missing semicolon in lldbassert macro
Added:
Modified:
lldb/include/lldb/Utility/LLDBAssert.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/Utility/LLDBAssert.h b/lldb/include/lldb/Utility/LLDBAssert.h
index cee30b81402ca..cc0146be25998 100644
--- a/lldb/include/lldb/Utility/LLDBAssert.h
+++ b/lldb/include/lldb/Utility/LLDBAssert.h
@@ -23,7 +23,7 @@
do { \
static std::once_flag _once_flag; \
lldb_private::_lldb_assert(static_cast<bool>(x), #x, __FUNCTION__, \
- __FILE_NAME__, __LINE__, _once_flag) \
+ __FILE_NAME__, __LINE__, _once_flag); \
} while (0)
#else
#define lldbassert(x) \
More information about the lldb-commits
mailing list