From 8eb256065f0e75ecf8e427d56955e2bac117c2d7 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Mon, 9 Mar 2020 12:13:48 +0000 Subject: IVGCVSW-4482 Remove boost::ignore_unused !referencetests:229377 Signed-off-by: Jan Eilers Change-Id: Ia9b360b4a057fe7bbce5b268092627c09a0dba82 --- src/armnnTfParser/test/Split.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/armnnTfParser/test/Split.cpp') diff --git a/src/armnnTfParser/test/Split.cpp b/src/armnnTfParser/test/Split.cpp index d53ae672eb..eeef90a625 100644 --- a/src/armnnTfParser/test/Split.cpp +++ b/src/armnnTfParser/test/Split.cpp @@ -3,10 +3,13 @@ // SPDX-License-Identifier: MIT // -#include #include "armnnTfParser/ITfParser.hpp" #include "ParserPrototxtFixture.hpp" +#include + +#include + BOOST_AUTO_TEST_SUITE(TensorflowParser) struct SplitFixture : public armnnUtils::ParserPrototxtFixture @@ -176,7 +179,7 @@ BOOST_FIXTURE_TEST_CASE(ParseSplit, InputFirstSplitFixture) struct SplitLastDimFixture : public armnnUtils::ParserPrototxtFixture { SplitLastDimFixture(bool withDimZero=false) { - boost::ignore_unused(withDimZero); + armnn::IgnoreUnused(withDimZero); m_Prototext = R"( node { name: "Placeholder" -- cgit v1.2.1