Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Apr 22, 2023
1 parent 0071ebc commit 35862a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/sipify.pl
Expand Up @@ -989,7 +989,7 @@ sub detect_non_method_member{
} elsif ( $cls3 eq ""){
$LINE .= "\ntypedef $tpl<$cls1,$cls2> ${tpl}${cls1}${cls2}Base;";
} else {
$LINE .= "\ntypedef $tpl<$cls1,$cls2,$cls3> ${tpl}${cls1}${cls2}{cls3}Base;";
$LINE .= "\ntypedef $tpl<$cls1,$cls2,$cls3> ${tpl}${cls1}${cls2}${cls3}Base;";
}
}
if ( PRIVATE ~~ @ACCESS && $#ACCESS != 0){
Expand Down
2 changes: 1 addition & 1 deletion tests/code_layout/sipify/sipifyheader.expected.sip
Expand Up @@ -452,7 +452,7 @@ class TemplateInheritance6 : SomethingElse, YourSuperTemplateAbcDefGhiBase
%TypeHeaderCode
#include "sipifyheader.h"
#include "yoursupertemplate.h"
typedef YourSuperTemplate<Abc,Def,Ghi> YourSuperTemplateAbcDef{cls3}Base;
typedef YourSuperTemplate<Abc,Def,Ghi> YourSuperTemplateAbcDefGhiBase;
%End
}

Expand Down

0 comments on commit 35862a6

Please sign in to comment.