From dce0e23af5b3f50c400041f8920ada99e5ef5ca5 Mon Sep 17 00:00:00 2001 From: Jeroen Vermeulen Date: Thu, 22 Aug 2024 17:43:34 +0200 Subject: [PATCH] Don't recommend `std::bind()`. --- include/pqxx/transactor.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/pqxx/transactor.hxx b/include/pqxx/transactor.hxx index 61d1bd1fd..84170912c 100644 --- a/include/pqxx/transactor.hxx +++ b/include/pqxx/transactor.hxx @@ -59,8 +59,7 @@ namespace pqxx * to confirm a commit. It all depends on the type of exception. * * The callback takes no arguments. If you're using lambdas, the easy way to - * pass arguments is for the lambda to "capture" them from your variables. Or, - * if you're using functions, you may want to use `std::bind`. + * pass arguments is for the lambda to "capture" them from your variables. * * Once your callback succeeds, it can return a result, and @ref perform will * return that result back to you.