BUG: Added missing newline in error message.
This commit is contained in:
parent
24ec7f5c3c
commit
5c39470031
|
@ -34,7 +34,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string>& args)
|
|||
}
|
||||
if(!exists)
|
||||
{
|
||||
std::string error = "Include file not found: " + args[0];
|
||||
std::string error = "Include file not found: " + args[0] + "\n";
|
||||
this->SetError(error.c_str());
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue