Check 'operator=()'
This commit is contained in:
parent
36a9f22b62
commit
2c697c6252
24
main.cpp
24
main.cpp
|
@ -29,6 +29,7 @@ void Tokenize(const char FileName[]);
|
||||||
void CheckConstructors();
|
void CheckConstructors();
|
||||||
void CheckUnusedPrivateFunctions();
|
void CheckUnusedPrivateFunctions();
|
||||||
void CheckMemset();
|
void CheckMemset();
|
||||||
|
void CheckOperatorEq1(); // Warning upon "void operator=(.."
|
||||||
|
|
||||||
// Function
|
// Function
|
||||||
void CheckMovableVariableDeclaration();
|
void CheckMovableVariableDeclaration();
|
||||||
|
@ -86,7 +87,11 @@ static void CppCheck(const char FileName[])
|
||||||
// This function can do dangerous things if used wrong.
|
// This function can do dangerous things if used wrong.
|
||||||
CheckMemset();
|
CheckMemset();
|
||||||
|
|
||||||
WarningHeaderWithImplementation();
|
CheckOperatorEq1();
|
||||||
|
|
||||||
|
// Found implementation in header
|
||||||
|
// Since this is not a bug I am not enabling it right now
|
||||||
|
//WarningHeaderWithImplementation();
|
||||||
|
|
||||||
// Warning upon c-style pointer casts
|
// Warning upon c-style pointer casts
|
||||||
WarningOldStylePointerCast();
|
WarningOldStylePointerCast();
|
||||||
|
@ -868,6 +873,23 @@ void CheckMemset()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
// Class: "void operator=("
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
void CheckOperatorEq1()
|
||||||
|
{
|
||||||
|
const char *pattern[] = {"void", "operator", "=", "(", NULL};
|
||||||
|
if (TOKEN *tok = findtoken(tokens,pattern))
|
||||||
|
{
|
||||||
|
std::ostringstream ostr;
|
||||||
|
ostr << FileLine(tok) << ": 'operator=' should return something";
|
||||||
|
ReportErr(ostr.str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// HEADERS - No implementation in a header
|
// HEADERS - No implementation in a header
|
||||||
|
|
Loading…
Reference in New Issue