Cppcheck: Fix some warnings

This commit is contained in:
heckflosse
2016-10-12 19:04:06 +02:00
parent 29d5329f3f
commit e98bd47487
16 changed files with 66 additions and 525 deletions

View File

@@ -41,10 +41,10 @@ class ImageMatrices
{
public:
double rgb_cam[3][3];
double cam_rgb[3][3];
double xyz_cam[3][3];
double cam_xyz[3][3];
double rgb_cam[3][3] = {};
double cam_rgb[3][3] = {};
double xyz_cam[3][3] = {};
double cam_xyz[3][3] = {};
};
class ImageSource : public InitialImage