summaryrefslogtreecommitdiff
path: root/libpqpp/connection.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-02-14 01:14:00 +0000
committerrandomdan <randomdan@localhost>2011-02-14 01:14:00 +0000
commit85d151abd0f607178d4fdec95e61fec30769bfa3 (patch)
treee5ca97cfbbdb236844e53bb2c40aa0131658ef31 /libpqpp/connection.h
parentFixed handling of ?s in string literals (diff)
downloadlibdbpp-postgresql-85d151abd0f607178d4fdec95e61fec30769bfa3.tar.bz2
libdbpp-postgresql-85d151abd0f607178d4fdec95e61fec30769bfa3.tar.xz
libdbpp-postgresql-85d151abd0f607178d4fdec95e61fec30769bfa3.zip
Fixes to compile with all gcc warnings as errors
Fixes to keep uuid impl choice entirely within uuid class Fix to collect all text in xslRows Error in unhandled compares Add support for no change check in PQ connector Move dumptask in p2console, soon to be removed Fix variable creation code to set type correctly
Diffstat (limited to 'libpqpp/connection.h')
-rw-r--r--libpqpp/connection.h4
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;