From 19b4b2cbdf1b4c500e1d33c510ccfe4cc6bc8744 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 8 Oct 2023 16:46:08 +0100 Subject: Fix virtual/override attribute use --- libpqpp/pq-prepared.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libpqpp/pq-prepared.h') diff --git a/libpqpp/pq-prepared.h b/libpqpp/pq-prepared.h index db520fa..ddddf01 100644 --- a/libpqpp/pq-prepared.h +++ b/libpqpp/pq-prepared.h @@ -11,7 +11,7 @@ namespace PQ { class PreparedStatement : public Command { protected: PreparedStatement(Connection *, const std::string &, const DB::CommandOptionsCPtr &); - virtual ~PreparedStatement() = default; + ~PreparedStatement() override = default; const char * prepare() const; mutable const char * pstmt; -- cgit v1.2.3