mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
cmFileCommand: Update for new signature of GetLineFromStream
This commit is contained in:
@@ -197,9 +197,10 @@ bool HandleReadCommand(std::vector<std::string> const& args,
|
||||
}
|
||||
|
||||
// is there a limit?
|
||||
long sizeLimit = -1;
|
||||
std::string::size_type sizeLimit = std::string::npos;
|
||||
if (!arguments.Limit.empty()) {
|
||||
sizeLimit = atoi(arguments.Limit.c_str());
|
||||
sizeLimit =
|
||||
static_cast<std::string::size_type>(atoi(arguments.Limit.c_str()));
|
||||
}
|
||||
|
||||
// is there an offset?
|
||||
@@ -231,12 +232,9 @@ bool HandleReadCommand(std::vector<std::string> const& args,
|
||||
cmSystemTools::GetLineFromStream(file, line, &has_newline, sizeLimit)) {
|
||||
if (sizeLimit > 0) {
|
||||
sizeLimit = sizeLimit - static_cast<long>(line.size());
|
||||
if (has_newline) {
|
||||
if (has_newline && sizeLimit > 0) {
|
||||
sizeLimit--;
|
||||
}
|
||||
if (sizeLimit < 0) {
|
||||
sizeLimit = 0;
|
||||
}
|
||||
}
|
||||
output += line;
|
||||
if (has_newline) {
|
||||
|
||||
Reference in New Issue
Block a user