We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FileHandle.size() use unsigned int to return the size of the file, which only has 4,294,967,295.
FileHandle.size()
unsigned int
4,294,967,295
Not enough for larger file.
The text was updated successfully, but these errors were encountered:
Use uintmax_t to represent file sizes (refs #31)
5ecd244
Thanks for pointing this out. I added a new branch with a proposed change to the interfaces and member variables.
Sorry, something went wrong.
Is this going to be committed to master soon?
No branches or pull requests
FileHandle.size()
useunsigned int
to return the size of the file, which only has4,294,967,295
.Not enough for larger file.
The text was updated successfully, but these errors were encountered: