Changeset 283282 in webkit
- Timestamp:
- Sep 29, 2021, 4:53:31 PM (5 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/style/checkers/cpp.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r283281 r283282 1 2021-09-29 Basuke Suzuki <basuke.suzuki@sony.com> 2 3 [webkitpy] LOG_CHANNEL is widely used in the codebase and shouldn't be treated as error 4 https://bugs.webkit.org/show_bug.cgi?id=230995 5 6 Reviewed by Jonathan Bedard. 7 8 LOG_CHANNEL is the macro which is defined in each framework to define list of all channels 9 in the framework. 10 11 * Scripts/webkitpy/style/checkers/cpp.py: 12 (check_identifier_name_in_declaration): 13 1 14 2021-09-29 Alex Christensen <achristensen@webkit.org> 2 15 -
trunk/Tools/Scripts/webkitpy/style/checkers/cpp.py
r278340 r283282 4105 4105 and not modified_identifier == "vm_throw" 4106 4106 and not modified_identifier == "DFG_OPERATION" 4107 and not modified_identifier == "LOG_CHANNEL" 4107 4108 and not modified_identifier.find('chrono_literals') >= 0): 4108 4109 error(line_number, 'readability/naming/underscores', 4, identifier + " is incorrectly named. Don't use underscores in your identifier names.")
Note:
See TracChangeset
for help on using the changeset viewer.