summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-04-04 10:41:59 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-04-04 10:41:59 +0900
commit7bab42fc4caf386fb53e463cee7807242e7d4f28 (patch)
tree5bb26e280321092cef0d7ee2a310c3e2eacc30a2
parentccf78121e9092f95545ef413da667324ca2e3cdc (diff)
downloadtdelibs-7bab42fc.tar.gz
tdelibs-7bab42fc.zip
Align kalyptus to changes made in TDE/tdebindings#36
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--dcop/dcopidlng/kalyptus7
1 files changed, 5 insertions, 2 deletions
diff --git a/dcop/dcopidlng/kalyptus b/dcop/dcopidlng/kalyptus
index 2024fb959..e3119b3dc 100644
--- a/dcop/dcopidlng/kalyptus
+++ b/dcop/dcopidlng/kalyptus
@@ -769,7 +769,10 @@ sub identifyDecl
\( (.*?) \) # parameters
\s*((?:const)?)\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
my $tpn = $1; # type + name
@@ -781,7 +784,7 @@ sub identifyDecl
}
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;
$params =~ s/\s+/ /g;