diff options
Diffstat (limited to 'libpqpp/pq-prepared.cpp')
-rw-r--r-- | libpqpp/pq-prepared.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libpqpp/pq-prepared.cpp b/libpqpp/pq-prepared.cpp index 8e6cea5..63a1cb5 100644 --- a/libpqpp/pq-prepared.cpp +++ b/libpqpp/pq-prepared.cpp @@ -1,10 +1,9 @@ #include "pq-prepared.h" #include "pq-connection.h" -PQ::PreparedStatement::PreparedStatement(Connection * c, const std::string & sql, unsigned int no, const DB::CommandOptions * opts) : +PQ::PreparedStatement::PreparedStatement(Connection * c, const std::string & sql, const DB::CommandOptions * opts) : DB::Command(sql), - Command(c, sql, no), - hash(opts && opts->hash ? *opts->hash : std::hash<std::string>()(sql)), + Command(c, sql, opts), pstmt(nullptr) { } |