STYLE: Fixed line too long.

This commit is contained in:
Brad King 2007-04-28 08:25:10 -04:00
parent be04cb2c45
commit bceb1532c6
1 changed files with 4 additions and 2 deletions

View File

@ -882,9 +882,11 @@ int cmCTestCoverageHandler::HandleGCovCoverage(
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "File: ["
<< sourceFile.c_str() << "]" << std::endl);
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "s: ["
<< sourceFile.substr(0, cont->SourceDir.size()) << "]" << std::endl);
<< sourceFile.substr(0, cont->SourceDir.size()) << "]"
<< std::endl);
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "b: ["
<< sourceFile.substr(0, cont->BinaryDir.size()) << "]" << std::endl);
<< sourceFile.substr(0, cont->BinaryDir.size()) << "]"
<< std::endl);
*cont->OFS << " Something went wrong. Cannot find: "
<< sourceFile.c_str()
<< " in source dir: " << cont->SourceDir.c_str()