From 6fd16aeac962cd80a37307fa90e3eb9a7102330b Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 14 Jul 2021 01:31:35 +0100 Subject: Pass bindings as a span, only wrap with initializer_list --- lib/output/pq/pqBindings.h | 3 +-- lib/output/pq/pqStmt.cpp | 2 +- lib/output/pq/pqStmt.h | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/output') diff --git a/lib/output/pq/pqBindings.h b/lib/output/pq/pqBindings.h index 13d0f69..2a4ac8c 100644 --- a/lib/output/pq/pqBindings.h +++ b/lib/output/pq/pqBindings.h @@ -11,8 +11,7 @@ namespace MyGrate::Output::Pq { struct Bindings { - // NOLINTNEXTLINE(hicpp-explicit-conversions) - explicit Bindings(const std::initializer_list & vs) + explicit Bindings(const std::span vs) { bufs.reserve(vs.size()); values.reserve(vs.size()); diff --git a/lib/output/pq/pqStmt.cpp b/lib/output/pq/pqStmt.cpp index 7e085b5..eb3c32d 100644 --- a/lib/output/pq/pqStmt.cpp +++ b/lib/output/pq/pqStmt.cpp @@ -19,7 +19,7 @@ namespace MyGrate::Output::Pq { } void - PqPrepStmt::execute(const std::initializer_list & vs) + PqPrepStmt::execute(const std::span vs) { Bindings b {vs}; res = {PQexecPrepared( diff --git a/lib/output/pq/pqStmt.h b/lib/output/pq/pqStmt.h index 887a326..33047c0 100644 --- a/lib/output/pq/pqStmt.h +++ b/lib/output/pq/pqStmt.h @@ -21,7 +21,7 @@ namespace MyGrate::Output::Pq { public: PqPrepStmt(const char * const q, std::size_t n, PqConn * c); - void execute(const std::initializer_list & vs) override; + void execute(const std::span vs) override; std::size_t rows() const override; -- cgit v1.2.3