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
You are using int as offsets, which makes it impossible to open/inspect large files. Please use q(u)int64 instead
int
q(u)int64
The text was updated successfully, but these errors were encountered:
I needed to change all the code to uint64_t in order to be able to show memory chunks
Sorry, something went wrong.
Currently QByteArray can store only 2GB size, see https://doc.qt.io/qt-5/qbytearray.html#maximum-size-and-out-of-memory-conditions so for big files need implement lazy loading data when needed
I was looking for this data structure: https://www.catch22.net/tuts/neatpad/piece-chains Imho is perfect as backend for an hexadecimal widget too
No branches or pull requests
You are using
int
as offsets, which makes it impossible to open/inspect large files. Please useq(u)int64
insteadThe text was updated successfully, but these errors were encountered: