| 643 | } |
| 644 | |
| 645 | void CheckClassImpl::noOperatorEqError(const Scope *scope, bool isdefault, const Token *alloc, bool inconclusive) |
| 646 | { |
| 647 | reportError(alloc, Severity::warning, "noOperatorEq", noMemberErrorMessage(scope, "operator=", isdefault), CWE398, inconclusive ? Certainty::inconclusive : Certainty::normal); |
| 648 | } |
| 649 | |
| 650 | void CheckClassImpl::noDestructorError(const Scope *scope, bool isdefault, const Token *alloc) |
| 651 | { |
no test coverage detected