Fix all warnings in pixelshift.cc

This commit is contained in:
heckflosse
2017-03-31 13:35:53 +02:00
parent bdcc4ab37e
commit 01943c1ec7

View File

@@ -113,7 +113,7 @@ public:
// use as empty declaration, resize before use! // use as empty declaration, resize before use!
// very useful as a member object // very useful as a member object
array2D() : array2D() :
x(0), y(0), owner(0), ptr(nullptr), data(nullptr), lock(0), flags(0) x(0), y(0), owner(0), flags(0), ptr(nullptr), data(nullptr), lock(0)
{ {
//printf("got empty array2D init\n"); //printf("got empty array2D init\n");
} }