mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-03 19:54:09 +00:00
be7ce4110e
This reverts commit e96515433d
.
14 lines
323 B
C++
14 lines
323 B
C++
#include <pqxx/internal/callgate.hxx>
|
|
|
|
namespace pqxx::internal::gate
|
|
{
|
|
class PQXX_PRIVATE errorhandler_connection : callgate<errorhandler>
|
|
{
|
|
friend class pqxx::connection;
|
|
|
|
errorhandler_connection(reference x) : super(x) {}
|
|
|
|
void unregister() noexcept { home().unregister(); }
|
|
};
|
|
} // namespace pqxx::internal::gate
|