[lldb] Add missing semicolon (NFC)

This commit is contained in:
Jonas Devlieghere 2024-05-28 10:36:20 -07:00
parent d1d863c012
commit f69b6d2c99
No known key found for this signature in database
GPG Key ID: 49CC0BD90FDEED4D

View File

@ -242,7 +242,7 @@ clang::QualType AppleObjCTypeEncodingParser::BuildObjCObjectPointerType(
// case. Assert assert in debug builds so we catch other weird cases.
assert(false && "forward declaration without definition");
LLDB_LOG(GetLog(LLDBLog::Types),
"forward declaration without definition: {0}", name)
"forward declaration without definition: {0}", name);
return ast_ctx.getObjCIdType();
}