Merge topic 'fix-ctest_build-output-processing-regression'

509f2713 ctest_build: Fix logic regression in parent that clips build output
This commit is contained in:
Brad King 2015-01-16 09:43:46 -05:00 committed by CMake Topic Stage
commit ed4b95e12f

View File

@ -1095,7 +1095,7 @@ void cmCTestBuildHandler::ProcessBuffer(const char* data, int length,
// Create a contiguous array for the line // Create a contiguous array for the line
this->CurrentProcessingLine.clear(); this->CurrentProcessingLine.clear();
this->CurrentProcessingLine.insert(this->CurrentProcessingLine.end(), this->CurrentProcessingLine.insert(this->CurrentProcessingLine.end(),
queue->begin(), queue->end()); queue->begin(), it);
this->CurrentProcessingLine.push_back(0); this->CurrentProcessingLine.push_back(0);
const char* line = &*this->CurrentProcessingLine.begin(); const char* line = &*this->CurrentProcessingLine.begin();