aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2023-04-05 13:43:24 +0100
committermike.kelly <mike.kelly@arm.com>2023-04-05 18:02:09 +0000
commit35fedc5b0b86d7f8afc84614b1489771e2e39283 (patch)
tree17e1724b348c68bbcf864041a02beeb58127b6e3
parent1ec5f85a0b98785fee16dd908b5d193e2b8a52db (diff)
downloadarmnn-35fedc5b0b86d7f8afc84614b1489771e2e39283.tar.gz
IVGCVSW-7672 Arm NN build failures in Main
* Added required includes if ARMNN_LEAK_CHECKING_ENABLED. Signed-off-by: Mike Kelly <mike.kelly@arm.com> Change-Id: I18bde66e8a1e19690747d7e05d10dbe0cedb1c1b
-rw-r--r--src/armnn/test/RuntimeTests.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/armnn/test/RuntimeTests.cpp b/src/armnn/test/RuntimeTests.cpp
index 6b3fe0f211..427352aaac 100644
--- a/src/armnn/test/RuntimeTests.cpp
+++ b/src/armnn/test/RuntimeTests.cpp
@@ -26,6 +26,11 @@
#include "RuntimeTests.hpp"
#include <TestUtils.hpp>
+#ifdef ARMNN_LEAK_CHECKING_ENABLED
+#include <HeapProfiling.hpp>
+#include <LeakChecking.hpp>
+#endif
+
namespace armnn
{