COMP: Remove useless variable assignment
This removes an assignment whose result is never used, thus quieting a warning from Borland.
This commit is contained in:
parent
34744b6bc0
commit
d445275ed0
|
@ -3963,7 +3963,6 @@ bool SystemTools::GetLineFromStream(kwsys_ios::istream& is,
|
||||||
|
|
||||||
// Append the data read to the line.
|
// Append the data read to the line.
|
||||||
line.append(buffer);
|
line.append(buffer);
|
||||||
sizeLimit = sizeLimit - static_cast<long>(length);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the results.
|
// Return the results.
|
||||||
|
|
Loading…
Reference in New Issue