diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-09 12:06:17 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-09 14:00:32 +0100 |
commit | fbad5dcdf8f17d1a3f3ff954f48b55d605d0a50c (patch) | |
tree | 38683378917dcea930f220da73c70392bd2363c6 /libpqpp/pq-modifycommand.h | |
parent | C++17 (diff) | |
download | libdbpp-postgresql-1.2.0.tar.bz2 libdbpp-postgresql-1.2.0.tar.xz libdbpp-postgresql-1.2.0.zip |
Updates to include C++17 changes for command options.
Diffstat (limited to 'libpqpp/pq-modifycommand.h')
-rw-r--r-- | libpqpp/pq-modifycommand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpqpp/pq-modifycommand.h b/libpqpp/pq-modifycommand.h index 18f5a8b..425e5f2 100644 --- a/libpqpp/pq-modifycommand.h +++ b/libpqpp/pq-modifycommand.h @@ -8,7 +8,7 @@ namespace PQ { class ModifyCommand : public DB::ModifyCommand, public PreparedStatement { public: - ModifyCommand(Connection *, const std::string & sql, const DB::CommandOptions *); + ModifyCommand(Connection *, const std::string & sql, const DB::CommandOptionsCPtr &); virtual ~ModifyCommand(); unsigned int execute(bool) override; |