Title: [156400] trunk/Source/WebCore
Revision
156400
Author
be...@igalia.com
Date
2013-09-25 09:08:08 -0700 (Wed, 25 Sep 2013)

Log Message

Fix warning in makeprop.pl
https://bugs.webkit.org/show_bug.cgi?id=121900

Reviewed by Ryosuke Niwa.

%nameIsInherited and %nameToId were incorrectly initialized using
references instead of lists.

Anyway there's no need to initialize those variables explicitly,
they're already empty by default.

* css/makeprop.pl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (156399 => 156400)


--- trunk/Source/WebCore/ChangeLog	2013-09-25 16:02:07 UTC (rev 156399)
+++ trunk/Source/WebCore/ChangeLog	2013-09-25 16:08:08 UTC (rev 156400)
@@ -1,3 +1,18 @@
+2013-09-25  Alberto Garcia  <be...@igalia.com>
+
+        Fix warning in makeprop.pl
+        https://bugs.webkit.org/show_bug.cgi?id=121900
+
+        Reviewed by Ryosuke Niwa.
+
+        %nameIsInherited and %nameToId were incorrectly initialized using
+        references instead of lists.
+
+        Anyway there's no need to initialize those variables explicitly,
+        they're already empty by default.
+
+        * css/makeprop.pl:
+
 2013-09-25  Allan Sandfeld Jensen  <allan.jen...@digia.com>
 
         REGRESSION(r156393): Build with !ENABLE(SVG_FONTS) broken

Modified: trunk/Source/WebCore/css/makeprop.pl (156399 => 156400)


--- trunk/Source/WebCore/css/makeprop.pl	2013-09-25 16:02:07 UTC (rev 156399)
+++ trunk/Source/WebCore/css/makeprop.pl	2013-09-25 16:08:08 UTC (rev 156400)
@@ -39,8 +39,8 @@
 
 my $numPredefinedProperties = 2;
 my @names = ();
-my %nameIsInherited = {};
-my %nameToId = {};
+my %nameIsInherited;
+my %nameToId;
 my @aliases = ();
 foreach (@NAMES) {
   next if (m/(^\s*$)/);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to