Initialize BlockIteratorState in a C++03 compatible way.

This commit is contained in:
Rasmus Munk Larsen 2018-09-20 11:40:43 -07:00
parent 44d8274383
commit 5d2e759329

View File

@ -188,7 +188,14 @@ class TensorBlockIO {
StorageIndex input_span; StorageIndex input_span;
StorageIndex output_span; StorageIndex output_span;
StorageIndex size; StorageIndex size;
StorageIndex count = 0; StorageIndex count;
BlockIteratorState()
: input_stride(0),
output_stride(0),
input_span(0),
output_span(0),
size(0),
count(0) {}
}; };
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void Copy( static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void Copy(