Kaydet (Commit) 7f90f8af authored tarafından Pierre-André Jacquod's avatar Pierre-André Jacquod

[cppchecker] deletion of supperfluous variable

üst 48f69c30
......@@ -419,9 +419,8 @@ StreamStr::operator_read_line( bstream & i_src )
operator<<(c);
}
bool bEndOfStream = nCount == 0;
// Check for line-end:
if ( NOT bEndOfStream AND c != 0 )
if ( NOT (nCount == 0) AND c != 0 )
{
char oldc = c;
if (i_src.read(&c, 1) == 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment