From 44c7693d484e4dd87458dfa6d270f2911c0ed93d Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Fri, 9 Mar 2018 15:21:53 +0000 Subject: [PATCH] MCOL-1246 Fix typo in boost call --- primitives/linux-port/dictionary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primitives/linux-port/dictionary.cpp b/primitives/linux-port/dictionary.cpp index 8aba1bf8a..81a46e103 100644 --- a/primitives/linux-port/dictionary.cpp +++ b/primitives/linux-port/dictionary.cpp @@ -167,7 +167,7 @@ void PrimitiveProcessor::p_TokenByScan(const TokenByScanRequestHeader *h, if (eqFilter) { // MCOL-1246 Trim whitespace before match string strData(sig, siglen); - boost::trim_right_if(strData, boost::is_any_if(" ")); + boost::trim_right_if(strData, boost::is_any_of(" ")); bool gotIt = eqFilter->find(strData) != eqFilter->end(); if ((h->COP1 == COMPARE_EQ && gotIt) || (h->COP1 == COMPARE_NE && !gotIt))