clear all opend deprecations

This commit is contained in:
Adam D. Ruppe 2024-03-30 21:57:45 -04:00
parent a35f0ef535
commit 89252d46e4
22 changed files with 62 additions and 47 deletions

View file

@ -206,7 +206,7 @@ class PostgresResult : ResultSet {
return row;
}
int affectedRows() {
int affectedRows() @system {
auto g = PQcmdTuples(res);
if(g is null)
return 0;
@ -305,7 +305,7 @@ class PostgresResult : ResultSet {
}
}
string copyCString(const char* c, int actualLength = -1) {
string copyCString(const char* c, int actualLength = -1) @system {
const(char)* a = c;
if(a is null)
return null;