Hello ,
I implemented another checker for clang static checker.
It checks that some code uses strlen(or wcslen) to calculate the length of an std::string( or std::wstring).
Currently, I want to study clang static analyzer through developing some checkers.But I do not know whether my patches will be accepted by the clang community.
I implemented another checker for clang static checker.
It checks that some code uses strlen(or wcslen) to calculate the
length of an std::string( or std::wstring).
Great! Are you implementing these only as warnings for the static
analyzer or are you also implementing a check for clang-tidy since the
fix is easy to apply?