You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 1772 fs.close() should have been fpout.close(). fs has been closed before (on line 1685). This is actually not a bug as the fstream destructor always closes the file and line 1772 is redundant anyway.
I think it should be changed to correct code or removed altogether.
The text was updated successfully, but these errors were encountered:
In line 1772
fs.close()
should have beenfpout.close()
.fs
has been closed before (on line 1685). This is actually not a bug as thefstream
destructor always closes the file and line 1772 is redundant anyway.I think it should be changed to correct code or removed altogether.
The text was updated successfully, but these errors were encountered: