Teach sipify the meaning of final

This commit is contained in:
Matthias Kuhn 2018-09-18 17:01:21 +02:00
parent 42573f7476
commit ab91b8553f
No known key found for this signature in database
GPG Key ID: 7A7F1A1C90C3E6A7

View File

@ -965,7 +965,7 @@ while ($LINE_IDX < $LINE_COUNT){
do {no warnings 'uninitialized';
$LINE =~ s/^(\s*template\s*<)(?:class|typename) (\w+>)(.*)$/$1$2$3/;
$LINE =~ s/\s*\boverride\b//;
$LINE =~ s/\s*\bfinal\b//;
$LINE =~ s/\s*\bfinal\b/ final/;
$LINE =~ s/\s*\bextern \b//;
$LINE =~ s/\s*\bMAYBE_UNUSED \b//;
$LINE =~ s/\s*\bNODISCARD \b//;