We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 886d8cc + c5a0fe8 commit 5e65268Copy full SHA for 5e65268
lldb/source/Plugins/LanguageRuntime/Swift/ReflectionContext.cpp
@@ -204,9 +204,10 @@ class TargetReflectionContext : public ReflectionContextInterface {
204
auto type_info = m_reflection_ctx.getTypeInfo(&type_ref, provider);
205
if (!type_info) {
206
std::stringstream ss;
207
+ ss << "Could not find type info for ";
208
type_ref.dump(ss);
- return llvm::createStringError("Could not get type info for typeref: " +
209
- ss.str());
+ ss << " in reflection metadata";
210
+ return llvm::createStringError(ss.str());
211
}
212
213
if (log && log->GetVerbose()) {
0 commit comments