File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33using namespace duckdb ;
44
55void duckdb::ConnDeleter (ConnWrapper *conn) {
6- cpp11::warning (" Connection is garbage-collected, use dbDisconnect() to avoid this." );
6+ cpp11::warning (std::string ( " Connection is garbage-collected, use dbDisconnect() to avoid this." ) );
77 delete conn;
88}
99
Original file line number Diff line number Diff line change 99using namespace duckdb ;
1010
1111void duckdb::DBDeleter (DBWrapper *db) {
12- cpp11::warning (" Database is garbage-collected, use dbDisconnect(con, shutdown=TRUE) or "
13- " duckdb::duckdb_shutdown(drv) to avoid this." );
12+ cpp11::warning (std::string ( " Database is garbage-collected, use dbDisconnect(con, shutdown=TRUE) or "
13+ " duckdb::duckdb_shutdown(drv) to avoid this." ) );
1414 delete db;
1515}
1616
You can’t perform that action at this time.
0 commit comments