hi all
Is there a way to catch this exception (assuming i cant prevent it for some reason)
Code:
QList<T>::operator[]: "index out of range"
is it possible to handle it using a catch statment?
Printable View
hi all
Is there a way to catch this exception (assuming i cant prevent it for some reason)
Code:
QList<T>::operator[]: "index out of range"
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).