summaryrefslogtreecommitdiff
path: root/libpqpp/pq-connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'libpqpp/pq-connection.h')
-rw-r--r--libpqpp/pq-connection.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libpqpp/pq-connection.h b/libpqpp/pq-connection.h
index af013ab..39f7f2a 100644
--- a/libpqpp/pq-connection.h
+++ b/libpqpp/pq-connection.h
@@ -47,13 +47,11 @@ namespace PQ {
void endBulkUpload(const char *) override;
size_t bulkUploadData(const char *, size_t) const override;
- ResultPtr checkResult(PGresult * res, int expected, int alternative = -1) const;
+ template<std::same_as<ExecStatusType>... Expected>
+ ResultPtr checkResult(PGresult * res, Expected... expected) const;
PGconn * conn;
mutable PreparedStatements preparedStatements;
-
- private:
- static bool checkResultInt(PGresult * res, int expected, int alternative);
};
}