Skip to content

Commit 9dd60e4

Browse files
committedJun 13, 2017
followup 82bd08c
removed debugging stuff
1 parent 82bd08c commit 9dd60e4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎scripts/sipify.pl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,13 +499,12 @@ sub detect_comment_block{
499499
do {no warnings 'uninitialized';
500500
push @CLASSNAME, $3;
501501
if ($#CLASSNAME == 0){
502-
dbg_info('www');
503502
# might be worth to add in-class classes later on
504503
# in case of a tamplate based class declaration
505504
# based on an in-class and in the same file
506505
push @DECLARED_CLASSES, $CLASSNAME[$#CLASSNAME];
507506
}
508-
dbg_info("class: ".$CLASSNAME[$#CLASSNAME].$#CLASSNAME);
507+
dbg_info("class: ".$CLASSNAME[$#CLASSNAME]);
509508
if ($LINE =~ m/\b[A-Z]+_EXPORT\b/ || $#CLASSNAME != 0 || $INPUT_LINES[$LINE_IDX-2] =~ m/^\s*template</){
510509
# class should be exported except those not at top level or template classes
511510
# if class is not exported, then its methods should be (checked whenever leaving out the class)

0 commit comments

Comments
 (0)
Please sign in to comment.