Browse Source

BUG: add check for missing ) on function

pull/1/head
Bill Hoffman 25 years ago
parent
commit
c9c08bca66
  1. 6
      Source/cmSystemTools.cxx

6
Source/cmSystemTools.cxx

@ -242,6 +242,12 @@ bool cmSystemTools::ParseFunction(std::ifstream& fin,
cmSystemTools::GetArguments(line, arguments);
}
}
else
{
cmSystemTools::Error("Parse error in read function missing end )",
inbuffer);
return false;
}
}
return true;
}

Loading…
Cancel
Save