diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-02 09:59:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-02 09:59:33 +0100 |
| commit | 355a73bf3179a8ed479d9ff20824d450ca12b09b (patch) | |
| tree | 8e473455ff9fdafa1be3b3c3ab37bc76f51f338e /src | |
| parent | c81be5abba47034760db125156bf80d9fcbdfc39 (diff) | |
Prevent theoretical possibility of an uninitialised variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/colour_conversion.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/colour_conversion.h b/src/colour_conversion.h index 1e293f78..47071dd1 100644 --- a/src/colour_conversion.h +++ b/src/colour_conversion.h @@ -47,6 +47,7 @@ class ColourConversion { public: ColourConversion () + : _yuv_to_rgb (YUV_TO_RGB_REC601) {} ColourConversion ( |
