Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 348 Bytes

operatorEqToSelf.md

File metadata and controls

11 lines (6 loc) · 348 Bytes

Pattern: Missing check for assignment to self for =

Issue: -

Description

= should check for assignment to self to ensure that each block of dynamically allocated memory is owned and managed by only one instance of the class.

Further Reading