Remove static initialization as error
This commit is contained in:
parent
3a58e3dd1c
commit
cb937262aa
@ -3820,15 +3820,6 @@ sub process {
|
|||||||
$fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
|
$fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# check for static initialisers.
|
|
||||||
if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
|
|
||||||
if (ERROR("INITIALISED_STATIC",
|
|
||||||
"do not initialise statics to $1\n" .
|
|
||||||
$herecurr) &&
|
|
||||||
$fix) {
|
|
||||||
$fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# check for misordered declarations of char/short/int/long with signed/unsigned
|
# check for misordered declarations of char/short/int/long with signed/unsigned
|
||||||
while ($sline =~ m{(\b$TypeMisordered\b)}g) {
|
while ($sline =~ m{(\b$TypeMisordered\b)}g) {
|
||||||
|
Loading…
Reference in New Issue
Block a user