From a8837bfcf45136f178a9884b7c6f6449b3e6ed41 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Thu, 16 Apr 2020 10:01:56 +0100 Subject: IVGCVSW-4513 Remove boost/algorithm/string * * Removed split, classification, trim, string, join, contains * Added StringUtils.hpp to replace the removed Boost String functionality Signed-off-by: David Monahan Change-Id: I8aa938dc3942cb65c512cccb2c069da66aa24668 --- tests/InferenceModel.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/InferenceModel.hpp') diff --git a/tests/InferenceModel.hpp b/tests/InferenceModel.hpp index af931f99f8..410bc7c04e 100644 --- a/tests/InferenceModel.hpp +++ b/tests/InferenceModel.hpp @@ -22,7 +22,7 @@ #include #include -#include +#include "armnn/utility/StringUtils.hpp" #include #include #include @@ -354,7 +354,7 @@ public: ("model-dir,m", po::value(&options.m_ModelDir)->required(), "Path to directory containing model files (.caffemodel/.prototxt/.tflite)") ("compute,c", po::value>(&options.m_ComputeDevices)-> - default_value(defaultComputes, boost::algorithm::join(defaultComputes, ", "))-> + default_value(defaultComputes, armnn::stringUtils::StringConcat(defaultComputes, ", "))-> multitoken(), backendsMessage.c_str()) ("dynamic-backends-path,b", po::value(&options.m_DynamicBackendsPath), "Path where to load any available dynamic backend from. " -- cgit v1.2.1