From 4d07e5e0e2f32184e395f44cc50eedf3de284d22 Mon Sep 17 00:00:00 2001 From: Narumol Prangnawarat Date: Mon, 6 Apr 2020 16:46:21 +0100 Subject: IVGCVSW-4485 Remove Boost assert Signed-off-by: Narumol Prangnawarat Change-Id: If602024a339df7548333e470545f9400c3daf7b3 --- test/TestTensor.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/TestTensor.hpp') diff --git a/test/TestTensor.hpp b/test/TestTensor.hpp index 623c9fbd..1cd1950d 100644 --- a/test/TestTensor.hpp +++ b/test/TestTensor.hpp @@ -6,6 +6,8 @@ #include "../ArmnnDriver.hpp" +#include + namespace driverTestHelpers { @@ -17,7 +19,7 @@ public: : m_Shape{shape} , m_Data{data} { - BOOST_ASSERT(m_Shape.GetNumElements() == m_Data.size()); + ARMNN_ASSERT(m_Shape.GetNumElements() == m_Data.size()); } hidl_vec GetDimensions() const; -- cgit v1.2.1