Skip to content
Snippets Groups Projects
Commit 057ceeae authored by Tom Perkins's avatar Tom Perkins
Browse files

Fix error introduced by merge

re #15286
parent 5321d5c8
No related merge requests found
......@@ -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()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment