diff options
Diffstat (limited to 'libpqpp/connection.h')
-rw-r--r-- | libpqpp/connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/connection.h b/libpqpp/connection.h index 8dafe84..4b9b28e 100644 --- a/libpqpp/connection.h +++ b/libpqpp/connection.h @@ -21,8 +21,8 @@ namespace PQ { DB::SelectCommand * newSelectCommand(const std::string & sql) const; DB::ModifyCommand * newModifyCommand(const std::string & sql) const; - void checkResult(PGresult * res, int expected, const char * doing) const; - void checkResultFree(PGresult * res, int expected, const char * doing) const; + void checkResult(PGresult * res, int expected) const; + void checkResultFree(PGresult * res, int expected) const; PGconn * conn; |