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
Changing exception disposition breaks ABI, if I'm not mistaken.
Do we want to preserve ABI and hide the exceptions, or do want to allow the exceptions and change ABI?
The text was updated successfully, but these errors were encountered:
ppisar
changed the title
SQLite3 desctrutor is declared as noexcept(true), but it can throw an exception.
SQLite3 desctrutor is declared as noexcept(true), but it can throw an exception
Jan 16, 2025
A static analyzer https://svashisht.fedorapeople.org/openscanhub/mass-scans/f42-13-Nov-2024/libdnf-0.73.3-1.fc42/scan-results.html#def18 found that ~SQLite3() destructor is implicitly declared as noexcept(true), but it calls SQLite3::close() which is implicitly noexcept(false) and it indeed throws Error objects.
Changing exception disposition breaks ABI, if I'm not mistaken.
Do we want to preserve ABI and hide the exceptions, or do want to allow the exceptions and change ABI?
The text was updated successfully, but these errors were encountered: