mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-23 07:28:51 -06:00
Fix warnings in CMake source code.
This commit is contained in:
@@ -63,7 +63,7 @@ static bool OutputBin(FILE* file, const char * buf,
|
||||
success = false;
|
||||
break;
|
||||
}
|
||||
outBuf[outBufCount] = convertedByte & 0xff;
|
||||
outBuf[outBufCount] = static_cast<char>(convertedByte & 0xff);
|
||||
outBufCount++;
|
||||
}
|
||||
if (success)
|
||||
|
||||
Reference in New Issue
Block a user