Skip to content

Commit f69b6d2

Browse files
committed
[lldb] Add missing semicolon (NFC)
1 parent d1d863c commit f69b6d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ clang::QualType AppleObjCTypeEncodingParser::BuildObjCObjectPointerType(
242242
// case. Assert assert in debug builds so we catch other weird cases.
243243
assert(false && "forward declaration without definition");
244244
LLDB_LOG(GetLog(LLDBLog::Types),
245-
"forward declaration without definition: {0}", name)
245+
"forward declaration without definition: {0}", name);
246246
return ast_ctx.getObjCIdType();
247247
}
248248

0 commit comments

Comments
 (0)