COMP: Resolved compiler warning

This commit is contained in:
Andrew Heather
2019-06-14 16:46:42 +01:00
parent 14fba293f9
commit d4314bda69

View File

@ -83,13 +83,8 @@ Foam::token Foam::functionEntries::ifeqEntry::expand
{ {
const word varName(keyword.substr(1, keyword.size()-1)); const word varName(keyword.substr(1, keyword.size()-1));
// lookup the variable name in the given dictionary // Lookup the variable name in the given dictionary
const entry* ePtr = dict.lookupScopedEntryPtr const entry* ePtr = dict.findScoped(varName, keyType::REGEX_RECURSIVE);
(
varName,
true,
true
);
if (ePtr) if (ePtr)
{ {
return token(ePtr->stream()); return token(ePtr->stream());