From 17e5a6c8ac3abc05329891aaa378bd6004b9c8ee Mon Sep 17 00:00:00 2001 From: Jeroen Vermeulen Date: Wed, 6 Jul 2022 14:53:10 +0200 Subject: [PATCH] Format. --- include/pqxx/transaction_base.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/pqxx/transaction_base.hxx b/include/pqxx/transaction_base.hxx index 7a38e9dee..db1316c34 100644 --- a/include/pqxx/transaction_base.hxx +++ b/include/pqxx/transaction_base.hxx @@ -607,8 +607,7 @@ public: * 2. The `exec` functions are faster for small results, but slower for large * results. */ - template - void for_query(zview query, CALLABLE &&func) + template void for_query(zview query, CALLABLE &&func) { exec(query).for_each(std::forward(func)); }