Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions man/checkers/cstyleCast.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ This checker is about C casts that converts to/from a pointer or reference.
Dangerous conversions are covered by other warnings so this ID `cstyleCast` is primarily about
writing warnings for casts that are currently safe.

# Motivation

The motivation of this checker is to modernize c++ code.

## How to fix

You can use C++ casts such as `static_cast` to fix these warnings.
Expand Down