1.. title:: clang-tidy - google-readability-casting 2 3google-readability-casting 4========================== 5 6Finds usages of C-style casts. 7 8https://google.github.io/styleguide/cppguide.html#Casting 9 10Corresponding cpplint.py check name: `readability/casting`. 11 12This check is similar to ``-Wold-style-cast``, but it suggests automated fixes 13in some cases. The reported locations should not be different from the 14ones generated by ``-Wold-style-cast``. 15