Cppcheck: Solve issues related to copy constructor

This commit is contained in:
heckflosse
2016-10-02 23:33:00 +02:00
parent 8de758f7b6
commit ccd9002c3a
18 changed files with 33 additions and 346 deletions

View File

@@ -60,6 +60,7 @@ class MultiDiagonalSymmetricMatrix
{
public:
MultiDiagonalSymmetricMatrix(int Dimension, int NumberOfDiagonalsInLowerTriangle);
MultiDiagonalSymmetricMatrix(const MultiDiagonalSymmetricMatrix&) = delete;
~MultiDiagonalSymmetricMatrix();
/* Storage of matrix data, and a function to create memory for Diagonals[index].
@@ -118,6 +119,7 @@ class EdgePreservingDecomposition
{
public:
EdgePreservingDecomposition(int width, int height);
EdgePreservingDecomposition(const EdgePreservingDecomposition&) = delete;
~EdgePreservingDecomposition();
//Create an edge preserving blur of Source. Will create and return, or fill into Blur if not NULL. In place not ok.