Warning, /sdk/clazy/docs/checks/README-qstring-comparison-to-implicit-char.md is written in an unsupported language. File is not indexed.

0001 # qstring-comparison-to-implicit-char
0002 
0003 Finds cases where QString is being compared to an int literal but it's casting to QChar implicitly.
0004 This is often a mistake as the developer intended to compare against the string representation of the integer.
0005 
0006 Example:
0007 ```
0008 if (myString == 5000) { // warning: QString being compared to implicit QChar
0009 }
0010 ```