mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-20 08:27:32 +08:00
Replacing all non-integral, single-precision floating point literals with double-precision values explicitly cast to CGFloat. For example, `0.1f` should become `(CGFloat)0.1`. Regex used: ``` ([0-9]*\.)([0-9]*?)([1-9]+)([0-9]*?)[fF] ``` PiperOrigin-RevId: 220683126