Skip to content

Commit 5d0f70d

Browse files
committed
use T v(...) style initialization
1 parent 922d587 commit 5d0f70d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Target/SwiftLanguageRuntimeDynamicTypeResolution.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,8 +1221,8 @@ llvm::Optional<size_t> SwiftLanguageRuntimeImpl::GetIndexOfChildMemberWithName(
12211221
case ReferenceKind::Strong: {
12221222
auto *reflection_ctx = GetReflectionContext();
12231223
auto &builder = reflection_ctx->getBuilder();
1224-
auto tc = TypeConverter(builder);
1225-
auto tip = LLDBTypeInfoProvider(*this, *ts);
1224+
TypeConverter tc(builder);
1225+
LLDBTypeInfoProvider tip(*this, *ts);
12261226
// The class_tr pointer is used to iterate the class hierarchy, from the
12271227
// current class, each superclass, and ends on null.
12281228
auto *class_tr = tr;

0 commit comments

Comments
 (0)