Fix uninitialize variable warning

This commit is contained in:
David Capello 2014-08-17 20:42:12 -03:00
parent e0a20e5385
commit 7080d0fa83

View File

@ -33,7 +33,7 @@ Hsv::Hsv(const Rgb& rgb)
int m = rgb.minComponent();
int c = M - m;
double chroma = double(c) / 255.0;
double hue_prime;
double hue_prime = 0.0;
double h, s, v;
double r, g, b;