From 057ceeae306071d33b901c10692dd26ba3f661f8 Mon Sep 17 00:00:00 2001 From: Tom Perkins <thomas.perkins@stfc.ac.uk> Date: Fri, 19 Feb 2016 10:45:32 +0000 Subject: [PATCH] Fix error introduced by merge re #15286 --- Framework/Kernel/src/ConfigService.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Framework/Kernel/src/ConfigService.cpp b/Framework/Kernel/src/ConfigService.cpp index 4ebcfba5329..b851bec4567 100644 --- a/Framework/Kernel/src/ConfigService.cpp +++ b/Framework/Kernel/src/ConfigService.cpp @@ -78,9 +78,9 @@ std::vector<std::string> splitPath(const std::string &path) { if (path.find(";") == std::string::npos) { // don't bother tokenizing splitted.push_back(path); } else { - int options = Poco::StringTokenizer::TOK_TRIM + - Poco::StringTokenizer::TOK_IGNORE_EMPTY; - Mantid::Kernel::StringTokenizer tokenizer(path, ";,", options); + int options = Mantid::Kernel::StringTokenizer::TOK_TRIM + + Mantid::Kernel::StringTokenizer::TOK_IGNORE_EMPTY; + Mantid::Kernel::StringTokenizer tokenizer(path, ";,", options); auto iend = tokenizer.end(); for (auto itr = tokenizer.begin(); itr != iend; ++itr) { if (!itr->empty()) { -- GitLab