From 1a766767aa25b2b131be19d50c8f2b222ad5cd86 Mon Sep 17 00:00:00 2001 From: sairajat Date: Tue, 7 Feb 2017 16:17:53 -0500 Subject: [PATCH] Bug Fix in Patterns::Selection --- source/base/parameter_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/base/parameter_handler.cc b/source/base/parameter_handler.cc index a0d6c22ead..128e2410b3 100644 --- a/source/base/parameter_handler.cc +++ b/source/base/parameter_handler.cc @@ -469,7 +469,7 @@ namespace Patterns std::string tmp(sequence); // remove whitespace at beginning while ((tmp.length() != 0) && (std::isspace (tmp[0]))) - tmp.erase (0,1); + tmp.erase (0,1); // check the different possibilities while (tmp.find('|') != std::string::npos) -- 2.39.5