ref: d4fccb8f4197485d72ddb1784bc3d8eb8968508d
parent: 0741629c8823e9f80862d0dffaaf2c44d429b91f
parent: 6042d68851dde2a2924cdc7dc09bd6e312f977b5
author: Tom Finegan <[email protected]>
date: Mon May 9 17:24:11 EDT 2016
Merge "convolve_test: Fix IOC runtime errors."
--- a/test/convolve_test.cc
+++ b/test/convolve_test.cc
@@ -118,7 +118,8 @@
// and filter_max_width = 16
//
uint8_t intermediate_buffer[71 * kMaxDimension];
- const int intermediate_next_stride = 1 - intermediate_height * output_width;
+ const int intermediate_next_stride =
+ 1 - static_cast<int>(intermediate_height * output_width);
// Horizontal pass (src -> transposed intermediate).
uint8_t *output_ptr = intermediate_buffer;