From 93667b1d7c361df68bdb1d733f17aba3ba34e046 Mon Sep 17 00:00:00 2001 From: Rob Hughes Date: Mon, 23 Sep 2019 16:24:05 +0100 Subject: Replace uses of non-standard C++: * Variable-length array replaced with std::vector * "and" replaced with "&&" (OK, this one is standard but MSVC doesn't like it and it's inconsistent with the rest of the codebase) * Replace u_int8_t with uint8_t Change-Id: I7b968a2cfa85a5492a2a547364464c594efb067b Signed-off-by: Rob Hughes --- tests/NetworkExecutionUtils/NetworkExecutionUtils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/NetworkExecutionUtils') diff --git a/tests/NetworkExecutionUtils/NetworkExecutionUtils.hpp b/tests/NetworkExecutionUtils/NetworkExecutionUtils.hpp index 635eaf3af5..eefe628201 100644 --- a/tests/NetworkExecutionUtils/NetworkExecutionUtils.hpp +++ b/tests/NetworkExecutionUtils/NetworkExecutionUtils.hpp @@ -161,7 +161,7 @@ auto ParseDataArray(std::istream& stream, [&quantizationScale, &quantizationOffset](const std::string & s) { return boost::numeric_cast( - armnn::Quantize(std::stof(s), + armnn::Quantize(std::stof(s), quantizationScale, quantizationOffset)); }); -- cgit v1.2.1