Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
avoid a warning with perl 5.14
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 20 Mar 2012 14:43:03 +0000 (15:43 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 20 Mar 2012 14:43:03 +0000 (15:43 +0100)
tools/doxygen/index_create.pl

index 9be03ab..b947465 100755 (executable)
@@ -47,7 +47,7 @@ print OUTPUT <<EOF;
 
 EOF
 
-foreach $type qw(define enumeration enumvalue function typedef) {
+foreach $type (qw(define enumeration enumvalue function typedef)) {
     if(defined $database{$type}) {
        print OUTPUT "<h2>$type</h2> \n  <ul>\n";
        foreach $name (sort keys %{$database{$type}}) {