cppcheck/CheckOther.h

26 lines
579 B
C
Raw Normal View History

//---------------------------------------------------------------------------
#ifndef CheckOtherH
#define CheckOtherH
//---------------------------------------------------------------------------
// Casting
void WarningOldStylePointerCast();
// Use standard functions instead
void WarningIsDigit();
// Redundant code
void WarningRedundantCode();
// Warning upon: if (condition);
void WarningIf();
// Using dangerous functions
void WarningDangerousFunctions();
//---------------------------------------------------------------------------
#endif