Changeset 183029 in webkit
- Timestamp:
- Apr 20, 2015, 3:05:50 PM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r183028 r183029 1 2015-04-17 Matthew Hanson <matthew_hanson@apple.com> 2 3 Suppress warning in prepare-ChangeLog. 4 https://bugs.webkit.org/show_bug.cgi?id=143882 5 6 Reviewed by David Kilzer. 7 8 Prune noisy prepare-ChangeLog output by using the List::Util::any function 9 instead of the deprecated smartmatch operator. 10 11 * Scripts/prepare-ChangeLog: 12 Import the List::Util::any function. 13 14 (get_function_line_ranges_for_cpp): 15 Use the any function instead of smartmatch. 16 1 17 2015-04-20 Anders Carlsson <andersca@apple.com> 2 18 -
trunk/Tools/Scripts/prepare-ChangeLog
r181996 r183029 61 61 use Getopt::Long; 62 62 use lib $FindBin::Bin; 63 use List::Util qw/any/; 63 64 use POSIX qw(strftime); 64 65 use VCSUtils; … … 875 876 # Open parenthesis. 876 877 if ($1 eq "(") { 877 $potential_name = $word unless $in_parentheses || $skip_til_brace_or_semicolon || $word ~~ ["CF_ENUM", "CF_OPTIONS", "NS_ENUM", "NS_OPTIONS"];878 $potential_name = $word unless $in_parentheses || $skip_til_brace_or_semicolon || any { $word eq $_ } ("CF_ENUM", "CF_OPTIONS", "NS_ENUM", "NS_OPTIONS"); 878 879 $in_parentheses++; 879 880 next;
Note:
See TracChangeset
for help on using the changeset viewer.