r-dbi / RPostgres

A DBI-compliant interface to PostgreSQL
https://rpostgres.r-dbi.org
Other
334 stars 78 forks source link

chore: Suppress warning in gcc-12 #443

Closed jeroen closed 12 months ago

jeroen commented 12 months ago

There is bug in gcc-12 that leads to the warning:

warning: pointer used after 'void operator delete(void*, std::size_t)' [-Wuse-after-free]

The bug is fixed in gcc-13. So we suppress it.

krlmlr commented 12 months ago

Thanks!