Rotem Maman
Rotem Maman
Severity: Style This checker is made to find data members which are defined as public in the code and to notify the user about them. Then, the user may consider...
Severity: Style This checker checks whether there is an operation or an assignment of a variable represented by more bytes, in a variable represented by fewer bytes. It is possible...
Severity: Performance The purpose of this checker is to make sure that the move operation is indeed used in the move constructor.
This is an existing checker that was made to find cases where the operator "++" is used on such variables. We have improved this checker so it will work for...
Severity: Style Usually, the variable which is initialized in the for loop is the same variable we would like to use in the rest of the loop. When we write...
In C language, we often allocate dynamic memory using functions such as malloc, realloc, calloc, ect. When using these functions, it is important to check that the size of the...