Align kalyptus to changes made in TDE/tdebindings#36

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/265/head
Michele Calgaro 1 month ago
parent ccf78121e9
commit 7bab42fc4c
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -769,7 +769,10 @@ sub identifyDecl
\( (.*?) \) # parameters \( (.*?) \) # parameters
\s*((?:const)?)\s* \s*((?:const)?)\s*
(?:throw\s*\(.*?\))? (?:throw\s*\(.*?\))?
\s*((?:=\s*0(?:L?))?)\s* # Pureness. is "0L" allowed? \s*((?:=\s*(?:
0(?:L?)| # Pureness. is "0L" allowed?
default # Default method
))?)
\s*[;{]+/xs ) { # rest \s*[;{]+/xs ) { # rest
my $tpn = $1; # type + name my $tpn = $1; # type + name
@ -781,7 +784,7 @@ sub identifyDecl
} }
my $const = $3 eq "" ? 0 : 1; my $const = $3 eq "" ? 0 : 1;
my $pure = $4 eq "" ? 0 : 1; my $pure = $4 eq "" ? 0 : ($4 =~ "default" ? 0 : 1);
$tpn =~ s/\s+/ /g; $tpn =~ s/\s+/ /g;
$params =~ s/\s+/ /g; $params =~ s/\s+/ /g;

Loading…
Cancel
Save