Whitespace

This commit is contained in:
Nyall Dawson 2017-04-07 09:23:24 +10:00
parent ca8e1d343d
commit 85b38e36eb

View File

@ -14,8 +14,8 @@ sub processDoxygenLine
$line =~ s/\\a //g;
# replace :: with . (changes c++ style namespace/class directives to Python style)
$line =~ s/::/./g;
# replace nullptr with None (nullptr means nothing to Python devs)
$line =~ s/\bnullptr\b/None/g;
# replace nullptr with None (nullptr means nothing to Python devs)
$line =~ s/\bnullptr\b/None/g;
if ( $line =~ m/[\\@](ingroup|class)/ ) {
return ""