浏览代码

BUG: Added missing newline in error message.

Brad King 24 年之前
父节点
当前提交
5c39470031
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/cmIncludeCommand.cxx

+ 1 - 1
Source/cmIncludeCommand.cxx

@@ -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;
     }