aboutsummaryrefslogtreecommitdiff
path: root/RequestThread.cpp
diff options
context:
space:
mode:
authorNarumol Prangnawarat <narumol.prangnawarat@arm.com>2020-04-06 16:46:21 +0100
committerNarumol Prangnawarat <narumol.prangnawarat@arm.com>2020-04-07 14:55:36 +0000
commit4d07e5e0e2f32184e395f44cc50eedf3de284d22 (patch)
tree880d7a30c3d36f1892312da7ed6d04d7dbf2f040 /RequestThread.cpp
parentdbae2476905291b82e4b9bb7828be83ae7ddd84f (diff)
downloadandroid-nn-driver-4d07e5e0e2f32184e395f44cc50eedf3de284d22.tar.gz
IVGCVSW-4485 Remove Boost assert
Signed-off-by: Narumol Prangnawarat <narumol.prangnawarat@arm.com> Change-Id: If602024a339df7548333e470545f9400c3daf7b3
Diffstat (limited to 'RequestThread.cpp')
-rw-r--r--RequestThread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/RequestThread.cpp b/RequestThread.cpp
index 50c5161c..a177b1a4 100644
--- a/RequestThread.cpp
+++ b/RequestThread.cpp
@@ -17,7 +17,7 @@
#include "ArmnnPreparedModel_1_3.hpp"
#endif
-#include <boost/assert.hpp>
+#include <armnn/utility/Assert.hpp>
#include <log/log.h>
@@ -135,7 +135,7 @@ void RequestThread<PreparedModel, HalVersion, CallbackContext>::Process()
default:
// this should be unreachable
ALOGE("RequestThread::Process() - invalid message type");
- BOOST_ASSERT_MSG(false, "ArmNN: RequestThread: invalid message type");
+ ARMNN_ASSERT_MSG(false, "ArmNN: RequestThread: invalid message type");
}
}
}