Skip to content

Commit 736ccf9

Browse files
committed
Try to avoid unnamed bool parameter
1 parent 5f87402 commit 736ccf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CodeGen/ItaniumCXXABI.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,8 @@ class ItaniumCXXABI : public CodeGen::CGCXXABI {
451451
if (!IsInlined)
452452
continue;
453453

454-
StringRef Name =
455-
CGM.getMangledName(VtableComponent.getGlobalDecl(false));
454+
StringRef Name = CGM.getMangledName(
455+
VtableComponent.getGlobalDecl(/*HasVectorDeletingDtors=*/false));
456456
auto *Entry = CGM.GetGlobalValue(Name);
457457
// This checks if virtual inline function has already been emitted.
458458
// Note that it is possible that this inline function would be emitted

0 commit comments

Comments
 (0)