소스 검색

ENH: Added extra newline in an error message to improve readability.

Brad King 24 년 전
부모
커밋
ee86c59cba
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Source/cmSetCommand.cxx

+ 1 - 0
Source/cmSetCommand.cxx

@@ -105,6 +105,7 @@ bool cmSetCommand::InitialPass(std::vector<std::string>& args)
       {
       std::string error = "Error in arguments to cache, expected CACHE found:";
       error += args[cacheStart];
+      error += "\n";
       this->SetError(error.c_str());
       return false;
       }