From 4eb8889cfdec6ea3ea8e430b8939a4f3d8918623 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 8 Oct 2023 17:47:15 +0100 Subject: Fix the trivial clang-tidy warnings --- libpqpp/pq-cursorselectcommand.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libpqpp/pq-cursorselectcommand.h') diff --git a/libpqpp/pq-cursorselectcommand.h b/libpqpp/pq-cursorselectcommand.h index 2b3418b..bd46547 100644 --- a/libpqpp/pq-cursorselectcommand.h +++ b/libpqpp/pq-cursorselectcommand.h @@ -1,10 +1,11 @@ #ifndef PQ_CURSORSELECTCOMMAND_H #define PQ_CURSORSELECTCOMMAND_H -#include "command_fwd.h" // for CommandOptionsCPtr +#include "command_fwd.h" #include "pq-command.h" #include "pq-selectbase.h" -#include // for string +#include +#include namespace PQ { class Connection; @@ -14,6 +15,7 @@ namespace PQ { CursorSelectCommand( Connection *, const std::string & sql, const PQ::CommandOptionsCPtr &, const DB::CommandOptionsCPtr &); ~CursorSelectCommand() override; + SPECIAL_MEMBERS_DELETE(CursorSelectCommand); bool fetch() override; void execute() override; -- cgit v1.2.3