File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
lib/SILOptimizer/Mandatory Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -385,21 +385,21 @@ describe(SILInstruction *blame) {
385385
386386 // if we have no callee info, all we know is it's a call involving self.
387387 if (!callee)
388- return { " a call involving" , " " , ctx.Id_self } ;
388+ return std::make_tuple ( " a call involving" , " " , ctx.Id_self ) ;
389389
390- return {
390+ return std::make_tuple (
391391 verbForInvoking (callee),
392392 callee->getDescriptiveKindName (callee->getDescriptiveKind ()),
393393 callee->getName ()
394- } ;
394+ ) ;
395395 }
396396
397397 // handle non-call blames
398398 switch (blame->getKind ()) {
399399 case SILInstructionKind::CopyValueInst:
400- return { " making a copy of" , " " , ctx.Id_self } ;
400+ return std::make_tuple ( " making a copy of" , " " , ctx.Id_self ) ;
401401 default :
402- return { " this use of" , " " , ctx.Id_self } ;
402+ return std::make_tuple ( " this use of" , " " , ctx.Id_self ) ;
403403 }
404404}
405405
You can’t perform that action at this time.
0 commit comments