xref: /llvm-project/clang-tools-extra/docs/clang-tidy/checks/google/readability-casting.rst (revision 6e566bc5523f743bc34a7e26f050f1f2b4d699a8)
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