hi all
Is there a way to catch this exception (assuming i cant prevent it for some reason)
Qt Code:
QList<T>::operator[]: "index out of range"To copy to clipboard, switch view to plain text mode
is it possible to handle it using a catch statment?
hi all
Is there a way to catch this exception (assuming i cant prevent it for some reason)
Qt Code:
QList<T>::operator[]: "index out of range"To copy to clipboard, switch view to plain text mode
is it possible to handle it using a catch statment?
It's not an exception, it's diagnostic data and only performed in debug mode. Build your app for release, and the check isn't performed (your app will probably just crash instead).
Bookmarks