Address pre-N4387 tuple usage
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com>
Change-Id: Iefe6e08e27b8fe1e688d2ff9db8cb7e172b568f3
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4429
Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
std::tuple<unsigned int, unsigned int> next_block(const T ** const row_ptr) {
if (finished()) {
- return { 0, 0 };
+ return std::make_tuple(0, 0);
}
// "in_width" in the amount of data that will be read in (copied)
m_current_pos++;
m_length_remaining-=out_width;
- return { in_width, offset };
+ return std::make_tuple(in_width, offset);
}
}; // end of "row handler" class