Skip to content

Commit 246bc84

Browse files
committed
[lldb] Fix missing semicolon in lldbassert macro
(cherry picked from commit 12cf6d3)
1 parent 0981fd2 commit 246bc84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/include/lldb/Utility/LLDBAssert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
do { \
2424
static std::once_flag _once_flag; \
2525
lldb_private::_lldb_assert(static_cast<bool>(x), #x, __FUNCTION__, \
26-
__FILE_NAME__, __LINE__, _once_flag) \
26+
__FILE_NAME__, __LINE__, _once_flag); \
2727
} while (0)
2828
#else
2929
#define lldbassert(x) \

0 commit comments

Comments
 (0)