Skip to content

Commit

Permalink
followup 82bd08c
Browse files Browse the repository at this point in the history
removed debugging stuff
  • Loading branch information
3nids committed Jun 13, 2017
1 parent 82bd08c commit 9dd60e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/sipify.pl
Expand Up @@ -499,13 +499,12 @@ sub detect_comment_block{
do {no warnings 'uninitialized';
push @CLASSNAME, $3;
if ($#CLASSNAME == 0){
dbg_info('www');
# might be worth to add in-class classes later on
# in case of a tamplate based class declaration
# based on an in-class and in the same file
push @DECLARED_CLASSES, $CLASSNAME[$#CLASSNAME];
}
dbg_info("class: ".$CLASSNAME[$#CLASSNAME].$#CLASSNAME);
dbg_info("class: ".$CLASSNAME[$#CLASSNAME]);
if ($LINE =~ m/\b[A-Z]+_EXPORT\b/ || $#CLASSNAME != 0 || $INPUT_LINES[$LINE_IDX-2] =~ m/^\s*template</){
# class should be exported except those not at top level or template classes
# if class is not exported, then its methods should be (checked whenever leaving out the class)
Expand Down

0 comments on commit 9dd60e4

Please sign in to comment.