Replaced std::stringstream with cmOStringStream

This commit is contained in:
Zach Mullen 2009-08-28 11:40:34 -04:00
parent b427d1985e
commit 996bb51a1d
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ void cmCTestRunTest::WriteLogOutputTop(int completed, int total)
cmCTestLog(this->CTest, HANDLER_OUTPUT, "Testing");
}
std::stringstream indexStr;
cmOStringStream indexStr;
indexStr << " (" << this->Index << ")";
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(6)
<< indexStr.str().c_str());