RESOLVED FIXED121900
Fix warning in makeprop.pl
https://bugs.webkit.org/show_bug.cgi?id=121900
Summary Fix warning in makeprop.pl
Alberto Garcia
Reported 2013-09-25 04:40:19 PDT
After r155511: Reference found where even-sized list expected at ../../Source/WebCore/css/makeprop.pl line 42. Reference found where even-sized list expected at ../../Source/WebCore/css/makeprop.pl line 43. The problem is here: my %nameIsInherited = {}; my %nameToId = {}; {} is not an empty hash, it's a _reference_ to an empty hash. Hashes are initialized using lists, with (). Anyway, there's no need to initialize it explicitly to () either since that's already the default value.
Attachments
Patch (1.15 KB, patch)
2013-09-25 04:42 PDT, Alberto Garcia
rniwa: review+
Alberto Garcia
Comment 1 2013-09-25 04:42:58 PDT
Alberto Garcia
Comment 2 2013-09-25 09:07:06 PDT
Note You need to log in before you can comment on or make changes to this bug.