Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Editor: Use in/decrementors in wp_tinycolor_hue_to_rgb().
Replaces `+=` and `-=` with `++$t` and `--$t` (in/decrementors) within the `wp_tinycolor_hue_to_rgb()`. Why? For performance: in/decrementors are more performant than an assignment with a calculation. References: * https://www.php.net/manual/en/language.operators.increment.php * WordPress/gutenberg#44551 Follow-up to [50929]. Props jrf, czapla, antonvlasenko, aristath, mamaduka. See #57527. Built from https://develop.svn.wordpress.org/trunk@55140 git-svn-id: http://core.svn.wordpress.org/trunk@54673 1a063a9b-81f0-0310-95a4-ce76da25c4cd
- Loading branch information