mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 05:30:33 +03:00
etc.c.sqlite3: Fix incorrect constness of sqlite3_err* functions
Introduced in 79b0531be3
This commit is contained in:
parent
ac701a6cb9
commit
b1dfdf138b
1 changed files with 3 additions and 3 deletions
|
@ -691,11 +691,11 @@ int sqlite3_errcode(sqlite3 *db);
|
|||
/// Ditto
|
||||
int sqlite3_extended_errcode(sqlite3 *db);
|
||||
/// Ditto
|
||||
immutable(char)* sqlite3_errmsg(sqlite3*);
|
||||
const(char)* sqlite3_errmsg(sqlite3*);
|
||||
/// Ditto
|
||||
immutable(void)* sqlite3_errmsg16(sqlite3*);
|
||||
const(void)* sqlite3_errmsg16(sqlite3*);
|
||||
/// Ditto
|
||||
immutable(char)* sqlite3_errstr(int);
|
||||
const(char)* sqlite3_errstr(int);
|
||||
|
||||
/**
|
||||
** CAPI3REF: SQL Statement Object
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue