mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-12 01:09:47 -06:00
clang-tidy: fix bugprone-unintended-char-ostream-output lint
This commit is contained in:
@@ -2073,7 +2073,7 @@ void cmCTestTestHandler::RecordCustomTestMeasurements(cmXMLWriter& xml,
|
||||
xml.Attribute("encoding", "base64");
|
||||
std::ostringstream ostr;
|
||||
for (size_t cc = 0; cc < rlen; cc++) {
|
||||
ostr << encoded_buffer[cc];
|
||||
ostr << static_cast<char>(encoded_buffer[cc]);
|
||||
if (cc % 60 == 0 && cc) {
|
||||
ostr << std::endl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user