diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmSystemTools.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 48048c5..b66a178 100644 --- a/Source/cmSystemTools.cxx +++ b/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; } |