mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-19 05:30:59 -06:00
BUG: Added missing newline in error message.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user