~singpolyma/biboumi

06abd6e69ac79412fe37f51fb0bf977f0ddd3eb1 — louiz’ 4 years ago d839792
Add a missing "virtual", and remove a trivial "private" redundancy
1 files changed, 1 insertions(+), 3 deletions(-)

M src/database/postgresql_statement.hpp
M src/database/postgresql_statement.hpp => src/database/postgresql_statement.hpp +1 -3
@@ 15,7 15,7 @@ class PostgresqlStatement: public Statement
      body(std::move(body)),
      conn(conn)
  {}
  ~PostgresqlStatement()
  virtual ~PostgresqlStatement()
  {
    PQclear(this->result);
    this->result = nullptr;


@@ 89,8 89,6 @@ class PostgresqlStatement: public Statement
    return true;
  }

 private:

private:
  bool execute(const bool second_attempt=false)
  {