Skip to content

Commit 85b38e3

Browse files
committedApr 6, 2017
Whitespace
1 parent ca8e1d3 commit 85b38e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎scripts/sipify.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ sub processDoxygenLine
1414
$line =~ s/\\a //g;
1515
# replace :: with . (changes c++ style namespace/class directives to Python style)
1616
$line =~ s/::/./g;
17-
# replace nullptr with None (nullptr means nothing to Python devs)
18-
$line =~ s/\bnullptr\b/None/g;
17+
# replace nullptr with None (nullptr means nothing to Python devs)
18+
$line =~ s/\bnullptr\b/None/g;
1919

2020
if ( $line =~ m/[\\@](ingroup|class)/ ) {
2121
return ""

0 commit comments

Comments
 (0)
Please sign in to comment.