| 648 | } |
| 649 | |
| 650 | void CheckClassImpl::noDestructorError(const Scope *scope, bool isdefault, const Token *alloc) |
| 651 | { |
| 652 | reportError(alloc, Severity::warning, "noDestructor", noMemberErrorMessage(scope, "destructor", isdefault), CWE398, Certainty::normal); |
| 653 | } |
| 654 | |
| 655 | bool CheckClassImpl::canNotCopy(const Scope *scope) |
| 656 | { |
no test coverage detected