From 8aac937ca7051396de370c9d90aeb2393a0dd08d Mon Sep 17 00:00:00 2001 From: Eik Brauer Date: Tue, 2 Feb 2016 17:07:01 +0100 Subject: [PATCH] Fixes the windows build for Skia. --- src/piex_types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/piex_types.h b/src/piex_types.h index 6b294bd..f7c4d3e 100644 --- a/src/piex_types.h +++ b/src/piex_types.h @@ -19,6 +19,7 @@ #include #include +#include namespace piex { @@ -81,7 +82,7 @@ struct PreviewImageData { // Hint for the mosaic pattern dimension of the RAW image data. (0, 0) implies // that no mosaic info found. It is valid for DNG, NEF and NRW files. - std::uint32_t cfa_pattern_dim[2] = {0, 0}; + std::vector cfa_pattern_dim = std::vector(2, 0); }; // Defines the StreamInterface that needs to be implemented by the client.